错误条函数#

这展示了错误条方法的最基本用法。在本例中,为 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()
errorbar

参考文献

本示例展示了以下函数、方法、类和模块的使用情况

由 Sphinx-Gallery 生成的画廊