Matplotlib中条形图的平均折线

Matplotlib中条形图的平均折线,第1张

Matplotlib中条形图的平均折线

如果您想用竖线表示平均使用率

axvline(x_value)
。这将放置一条垂直线,该垂直线始终跨越y轴的整个(或指定的分数)。还有
axhline
水平线。

在其他作品中,您可能会有这样的事情:

ax.axvline(data1.mean(), color='blue', linewidth=2)ax.axvline(data2.mean(), color='green', linewidth=2)

作为一个更完整但不必要的复杂示例(大多数示例都很好地用了弯曲的箭头注释了均值):

import numpy as npimport matplotlib.pyplot as pltdata1 = np.random.normal(0, 1, 1000)data2 = np.random.normal(-2, 1.5, 1000)fig, ax = plt.subplots()bins = np.linspace(-10, 5, 50)ax.hist(data1, bins=bins, color='blue', label='Dataset 1',        alpha=0.5, histtype='stepfilled')ax.hist(data2, bins=bins, color='green', label='Dataset 2',        alpha=0.5, histtype='stepfilled')ax.axvline(data1.mean(), color='blue', linewidth=2)ax.axvline(data2.mean(), color='green', linewidth=2)# Add arrows annotating the means:for dat, xoff in zip([data1, data2], [15, -15]):    x0 = dat.mean()    align = 'left' if xoff > 0 else 'right'    ax.annotate('Mean: {:0.2f}'.format(x0), xy=(x0, 1), xytext=(xoff, 15), xycoords=('data', 'axes fraction'), textcoords='offset points', horizontalalignment=align, verticalalignment='center', arrowprops=dict(arrowstyle='-|>', fc='black', shrinkA=0, shrinkB=0,      connectionstyle='angle,angleA=0,angleB=90,rad=10'), )ax.legend(loc='upper left')ax.margins(0.05)plt.show()



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5673477.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存