注意 转到结尾 下载完整的示例代码。 错误条函数# 这展示了错误条方法的最基本用法。在本例中,为 x 和 y 方向的误差提供了常数。 import matplotlib.pyplot as plt import numpy as np # example data x = np.arange(0.1, 4, 0.5) y = np.exp(-x) fig, ax = plt.subplots() ax.errorbar(x, y, xerr=0.2, yerr=0.4) plt.show() 参考文献 本示例展示了以下函数、方法、类和模块的使用情况 matplotlib.axes.Axes.errorbar / matplotlib.pyplot.errorbar 由 Sphinx-Gallery 生成的画廊