第七次做業——numpy統計分佈顯示

用np.random.normal()產生一個正態分佈的隨機數組,並顯示出來。數組

np.random.randn()產生一個正態分佈的隨機數組,並顯示出來。dom

顯示鳶尾花花瓣長度的正態分佈圖,曲線圖,散點圖。spa

 

import numpy as np

# 導入鳶尾花數據
from sklearn.datasets import load_iris
data = load_iris()
pental_len = data.data[:,2]

# 計算鳶尾花花瓣長度最大值,平均值,中值,均方差
print("最大值:",np.max(pental_len))
print("平均值:",np.mean(pental_len))
print("中值:",np.median(pental_len))
print("均方差:",np.std(pental_len))

# 用np.random.normal()產生一個正態分佈的隨機數組,並顯示出來
print(np.random.normal(1,4,50))
print('============================================================================')

# np.random.randn()產生一個正態分佈的隨機數組,並顯示出來
print(np.random.randn(50))

# 顯示鳶尾花花瓣長度的正態分佈圖
import matplotlib.pyplot as plt
mu = np.mean(pental_len)
sigma = np.std(pental_len)
num = 10000
rand_data=np.random.normal(mu,sigma,num)
count,bins,ignored=plt.hist(rand_data,30,normed=True)
plt.plot(bins,1/(sigma*np.sqrt(2*np.pi))*np.exp(-(bins-mu)**2/(2*sigma**2)),linewidth=2,color="r")
plt.show()

# 顯示鳶尾花花瓣長度曲線圖
plt.plot(np.linspace(1,160,num=150),pental_len,'g')
plt.show()

# 顯示鳶尾花花瓣長度散點圖
plt.scatter(np.linspace(1,160,num=150),pental_len,alpha=1,marker='x')
plt.show()

 

運行結果code

 

 

 

相關文章
相關標籤/搜索