如何在 Matplotlib 中强制渲染错误线?
要强制错误线在 Matplotlib 中最后渲染,我们可以采取以下步骤 -
- 设置图形大小并调整子图之间和周围的边距。
- 使用 figure() 方法创建一个新图形或激活一个现有图形。
- 使用 gca() 方法获取当前轴。
- 绘制线条列表
- 将 y 作为线条和/或标记与附加的错误线绘制为 x。
- 要显示图形,请使用 show() 方法。
示例
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = plt.gca() [ax.plot(np.random.rand(10)) for j in range(10)] ax.errorbar(range(10), np.random.rand(10), yerr=.3 * np.random.rand(10)) plt.show()
输出
广告