如何在Python中用直方图绘制给定均值和SD的分布

时间:2016-10-03 05:57:46

标签: python matplotlib histogram

我有一个名为Scores的以下Pandas数据帧,以下是它的子集

df.groupyBy("id").agg(sum("amount"), collect_set("donor"))

当我绘制直方图时,它看起来像是

enter image description here

现在,我想在此直方图上绘制分布,均值= 37.72,SD = 2.72 我能够使用以下代码生成分发

      0
0  25.104179
1  60.908747
2  23.222238
3  51.553491
4  22.629690
5  53.338099
6  22.360882
7  26.515078
8  52.737316
9  40.235152

如何将其嵌入直方图?

1 个答案:

答案 0 :(得分:1)

你可以这样做,

plt.hist( The histogram data)
plt.plot( The distribution data )
plt.show() 

plt.show将显示嵌入单个数字中的两个数字。