2017-05-13 110 views
-4

給出的默認索引,如果我有這樣的數據幀,如何刪除其中有619列,653等如何消除由蟒蛇

enter image description here

+0

可能重複[在pandas中刪除索引列](http://stackoverflow.com/questions/20107570/removing-index-column-in-pandas) – zachdb86

回答

1

解決方案:

見例子如下:

import pandas 

data = pandas.read_csv("csv_file.csv") 

data.to_csv("csv_file_without_index.csv", index=None, header=None) 

現在,一個新的文件將創建命名爲csv_file_without_index沒有指數和頭..

乾杯!