【发布时间】:2014-04-15 12:40:05
【问题描述】:
如何制作垂直直方图。有什么选择吗,还是应该从头开始构建?我想要的是上图看起来像下面的图,但在垂直轴上!
from matplotlib import pyplot as plt
import numpy as np
sample=np.random.normal(size=10000)
vert_hist=np.histogram(sample,bins=30)
ax1=plt.subplot(2,1,1)
ax1.plot(vert_hist[0],vert_hist[1][:-1],'*g')
ax2=plt.subplot(2,1,2)
ax2.hist(sample,bins=30)
plt.show()
【问题讨论】:
标签: python numpy matplotlib plot histogram