我知道在matplotlib中这是一个问题-但是应该已经解决了,对吧?
当我执行.我的散点图示例代码:
%matplotlib inline
import matplotlib.pyplot as plt
plt.style.use('seaborn-whitegrid')
import numpy as np
plt.xlabel(r'$Label \,in \,Latex$')
plt.ylabel(r'$Label \,Latex$')
plt.title(r'$Title \,Latex$')
#plt.text(1,15,r'$Latex \,Example \,Text$')
x=[1,2,3,4]
y=[1,4,9,16]
plt.axis([0,6,20])
plt.errorbar(x,y,yerr=1,fmt='.k',capsize=3)
plt.savefig('foo.pdf',bBox_inches="tight")
误差线不在点上居中.我正在使用matplotlib 3.02-Anaconda不知何故存在3.03.
最佳答案
原文链接:https://www.f2er.com/python/533217.html