# 打印了所有列內的 count:總數;mean:均值;std:標準差;min:最小值;25%:四分之一分位數;50%:中位數;75%:四分之三分位數;max:最大值
print(df.describe())
print(df.describe())
2020-07-10
最贊回答 / 小小程序員一枚
如題,手敲代碼。簡介
#本節主要講解對?numpy.array()?數據類型的操作,?numpy?中的array?指的的數學中的?矩陣(行列式)?matrix
2020-07-03
print("Dot ")
print(np.dot(lst1.reshape([2,2]),lst2.reshape([2,2]))) #[[ 80 50] [200 130]]
看到Dot 函數的時候 感覺整個人都停頓了10分鐘來學習背后的數學知識
print(np.dot(lst1.reshape([2,2]),lst2.reshape([2,2]))) #[[ 80 50] [200 130]]
看到Dot 函數的時候 感覺整個人都停頓了10分鐘來學習背后的數學知識
2020-07-03