我目前正在使用以下代码绘制错误栏图。
plt.errorbar(log_I_mean_, log_V2_mean_, xerr, yerr, '.')
然而,最终结果显示每个误差线交叉点中心的圆点。如何在没有中心点的情况下绘制错误栏,如科学工作所要求的那样?
答案 0 :(得分:2)
使用'none'
代替'.'
:
import matplotlib.pyplot as plt
x = np.arange(0.1, 4, 0.5)
y = np.exp(-x)
yerr = 0.1 + 0.2*np.sqrt(x)
xerr = 0.1 + yerr
plt.figure()
plt.errorbar(x, y, 0.2, 0.4,'none')
plt.title("Simplest errorbars, 0.2 in x, 0.4 in y")
结果:
P.S。这是pylab here
示例的一部分的略微修改版本