码迷,mamicode.com
首页 > 其他好文 > 详细

Pandas写出数据

时间:2020-05-07 22:43:52      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:als   int   stdout   mil   sys   key   code   ips   size   

有读就有写!

1.

result = pd.read_csv(E:/test_resourse/ex6.csv,nrows=5 )

print(result)
result.to_csv(E:/test_resourse/out.csv, sep=|) #‘|‘作为分割符

#还可以禁止行索引的写入并且指定列索引写入
result.to_csv(sys.stdout, index=False, columns=[one,three,key])

result数据源:

        one       two     three      four key
0  0.467976 -0.038649 -0.295344 -1.824726   L
1 -0.358893  1.404453  0.704965 -0.200638   B
2 -0.501840  0.659254 -0.421691 -0.057688   G
3  0.204886  1.074134  1.388361 -0.982404   R
4  0.354628 -0.133116  0.283763 -0.837063   Q

已经将数据写入到out.csv和sys.stout中可自己查看

tips:也可将Series写入

2.也可以挑选需要的列写入

result.to_csv(sys.stdout, index=False, columns=[‘one‘,‘three‘,‘key‘])

 

Pandas写出数据

标签:als   int   stdout   mil   sys   key   code   ips   size   

原文地址:https://www.cnblogs.com/lishanstudy/p/12845917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!