如何在matplotlib中更改误差线限制的标记符号?

问题描述 投票:0回答:1

只是一个简单的问题,我在文档中找不到任何有用的地方:https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.errorbar.html

我想绘制带有误差线的值:

import matplotlib.pyplot as plt
plt.errorbar(1, 0.25, yerr=0.1, uplims=True, lolims=True, fmt='o')
plt.show()

enter image description here

但是我想在颜色栏上使用简单的线条,而不是两端的箭头。但是plt.errorbar()函数中没有“ capmarker”或类似的选项

提前感谢您的提示!

matplotlib marker errorbar
1个回答
0
投票
import matplotlib.pyplot as plt plt.errorbar(1, 0.25, yerr=0.1, fmt='o') plt.show()

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.