我有一个名为Scores的以下Pandas数据帧,以下是它的子集
df.groupyBy("id").agg(sum("amount"), collect_set("donor"))
当我绘制直方图时,它看起来像是
现在,我想在此直方图上绘制分布,均值= 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
如何将其嵌入直方图?
答案 0 :(得分:1)
你可以这样做,
plt.hist( The histogram data)
plt.plot( The distribution data )
plt.show()
plt.show
将显示嵌入单个数字中的两个数字。