先po几个比较好的Pandas入门网站
十分钟入门:http://www.codingpy.com/article/a-quick-intro-to-pandas/
手册前2章:http://pda.readthedocs.io/en/latest/chp5.html
Pnadas操作CSV文件:http://blog.csdn.net/myjiayan/article/details/42646061
Python 基础教程:http://www.runoob.com/python/
官方文档(0.22.0):http://pandas.pydata.org/pandas-docs/stable/10min.html

Pandas遍历CSV文
Fcsv = pd.read_csv("CSVtest.csv")
df = Fcv.head(5) //获取前五行
df.columns //获取列目录
for line in df.columns.tolist():
print df[line] //遍历列
df[2:5] //返回行

标签索引
df.loc[:,['A','B']]
df.loc['2012':'2015',['A','B']]
df.loc['2012',['A','B']]

位置索引
df.iloc[3] 第4行 从0到n-1
df.iloc[3:5, 0:2]
df.iloc[[1,2,4], [0,2]]
df.iloc[:,1:3]
df.iloc[1,1]
df[['A','B']]列选择

筛选
df[df>0]
df[df.A>0]
df2[df2['E'].isin(['two','four'])] 筛选出E列中包含'two', 'four'的行

posted on 2018-04-03 09:43  东边的疯  阅读(319)  评论(0编辑  收藏  举报