numpy統計分佈顯示

  #計算鳶尾花花瓣長度的最大值,平均值,中值,均方差。 import numpy as np from sklearn.datasets import load_iris data=load_iris() iris=data.data petal_length=iris[:,2] #取所有行的第二列 print(np.mean(petal_length)) #平均值 print(np.st
相關文章
相關標籤/搜索