注意
转到结尾 下载完整示例代码。
使用 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()
参考
本示例展示了以下函数、方法、类和模块的使用