【转】Pandas使用手册

个人觉得目前为止最好的pandas使用手册,存档供长期学习补充。

原址:https://zhuanlan.zhihu.com/p/25184830

【转】Pandas使用手册_第1张图片


【转】Pandas使用手册_第2张图片

补充:1、df.shape,查看数据集的size,返回tuple,行和列。

【转】Pandas使用手册_第3张图片

补充:1、iloc 索整型索引;loc 索引字符串索引;ix 是 iloc 和 loc的合体。df.ix[0:3,0:2]。

           2、列索引,df['A'],也可以用df.A(下文有用到)

【转】Pandas使用手册_第4张图片


【转】Pandas使用手册_第5张图片


【转】Pandas使用手册_第6张图片


【转】Pandas使用手册_第7张图片


【转】Pandas使用手册_第8张图片


【转】Pandas使用手册_第9张图片


【转】Pandas使用手册_第10张图片


【转】Pandas使用手册_第11张图片


【转】Pandas使用手册_第12张图片


【转】Pandas使用手册_第13张图片


【转】Pandas使用手册_第14张图片

你可能感兴趣的:(【转】Pandas使用手册)