# 打印了所有列内的 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