我会使用 Numpy 的直方图函数,并通过将直方图除以所有三个类别的总人口来自己标准化数据。结果可以用 matplotlib.bar() 绘制。
我不认为有绘制直方图的直接方法。如果您将 normed=True 传递给 matplotlibs histogram 函数,则权重被归一化为等于 1,因此不能用于传递整个直方图的“相对权重”。
from matplotlib.ticker import FuncFormatter
def myfunc(x, pos=0):
return '%1.1f%%' % (x*100)
cat1 = np.random.randint(0,11,40)
cat2 = np.random.randint(0,11,120)
cat3 = np.random.randint(0,11,90)
totalpop = float(cat1.size + cat2.size + cat3.size)
fig, axs = plt.subplots(3,1,figsize=(10,9))
fig.subplots_adjust(hspace=.3)
for n, cat in enumerate([cat1,cat2,cat3]):
hist, bins = np.histogram(cat, bins=11, range=(0,11))
axs[n].bar(bins[:-1], hist/ totalpop, align='center', facecolor='grey', alpha=0.5)
axs[n].set_title('Category %i' % n)
print 'Category %i:' % n, 'size: %i' % cat.size, 'relative size: %1.2f' % (cat.size / float(totalpop))
for ax in axs:
ax.set_xticks(range(11))
ax.set_xlim(-1,11)
ax.yaxis.set_major_formatter(FuncFormatter(myfunc))