标签: python matplotlib
出于某种原因,我无法了解在使用numpy.pyplot.errorbar时如何更改对齐方式。我正在创建一个这样的情节:
numpy.pyplot.errorbar
plt.errorbar(nums, vafmean, yerr=vafstddev, linestyle="None", fmt='o')
输出图显示大部分都很好,但数据被推出到图的最右边和左边,并且我无法想象在图中添加align='center'之类的内容。所以我正在寻找一种方法来让数据更多地绘制到图表的中心。
align='center'