标签: python matplotlib
您好我有一个数据集,我在matplotlib.pyplot中使用了hist:
In [182]: entries, bin_edges, patches = plt.hist(d[w], bins = 50, normed = True, stacked = True)
我获得直方图而不是概率密度,这意味着“标准化”或“堆积”不起作用。
我错过了什么吗?
提前致谢