numpy統計分佈顯示

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_le
相關文章
相關標籤/搜索