编程语言
首页 > 编程语言> > Python pandas数据分析中常用方法主要包括各种查看缺失值和填充等方法

Python pandas数据分析中常用方法主要包括各种查看缺失值和填充等方法

作者:互联网

https://blog.csdn.net/qq_16234613/article/details/64217337在这里插入代码片

加不加[],生成的类型是不同的
type(data["A1"])
pandas.core.series.Series
type(data[["A1"]])
pandas.core.frame.DataFrame
df.idxmax()   //按列idxmin , idxmax	    计算获取到最小值和最大值索引值
df.idxmax(axis=1)  //按行

标签:core,Python,方法,idxmax,data,df,type,pandas
来源: https://blog.csdn.net/weixin_45271076/article/details/98474220