2016-10-03 87 views
0

我已經跟隨大熊貓據幀命名比分,以下是它的子集如何繪製已知平均值與SD分佈在直方圖在Python

 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 

當我繪製的直方圖,它看起來像下面

enter image description here

現在,我想繪製這個直方圖平均值= 37.72和SD = 2.72 我能夠生成與下面的代碼

0123的分佈的分佈
x= np.linspace(10,90,1000) 
y = norm.pdf(x, loc=37.72, scale=2.71) # for example 
pylab.plot(x,y) 
pylab.show() 

我該如何將它嵌入直方圖?

回答

1

你可以做這樣的事情,

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

plt.show會顯示嵌入在一個單一的數字這兩個數字。

相關問題