注意
转到末尾下载完整的示例代码。
使用 PatchCollection 从误差线创建框#
在此示例中,我们通过添加一个矩形补丁来完善一个非常标准的误差线图,该补丁由 x 和 y 方向上的条形的限制定义。为此,我们必须编写自己的自定义函数,名为 make_error_boxes
。仔细检查此函数将揭示编写 matplotlib 函数的首选模式
一个
Axes
对象直接传递给该函数该函数直接在
Axes
方法上操作,而不是通过pyplot
接口可以缩写的绘图关键字参数被拼写出来,以便将来更好地读取代码(例如,我们使用 *facecolor* 而不是 *fc*)
由
Axes
绘图方法返回的艺术家随后由函数返回,以便在需要时,可以在函数外部修改它们的样式(在此示例中未修改)。
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.collections import PatchCollection
from matplotlib.patches import Rectangle
# Number of data points
n = 5
# Dummy data
np.random.seed(19680801)
x = np.arange(0, n, 1)
y = np.random.rand(n) * 5.
# Dummy errors (above and below)
xerr = np.random.rand(2, n) + 0.1
yerr = np.random.rand(2, n) + 0.2
def make_error_boxes(ax, xdata, ydata, xerror, yerror, facecolor='r',
edgecolor='none', alpha=0.5):
# Loop over data points; create box from errors at each point
errorboxes = [Rectangle((x - xe[0], y - ye[0]), xe.sum(), ye.sum())
for x, y, xe, ye in zip(xdata, ydata, xerror.T, yerror.T)]
# Create patch collection with specified colour/alpha
pc = PatchCollection(errorboxes, facecolor=facecolor, alpha=alpha,
edgecolor=edgecolor)
# Add collection to Axes
ax.add_collection(pc)
# Plot errorbars
artists = ax.errorbar(xdata, ydata, xerr=xerror, yerr=yerror,
fmt='none', ecolor='k')
return artists
# Create figure and Axes
fig, ax = plt.subplots(1)
# Call function to create error boxes
_ = make_error_boxes(ax, x, y, xerr, yerr)
plt.show()
参考
此示例显示了以下函数、方法、类和模块的使用