Python Pandas Error tokenizing data

后端 未结 30 2247
不知归路
不知归路 2020-11-22 04:49

I\'m trying to use pandas to manipulate a .csv file but I get this error:

pandas.parser.CParserError: Error tokenizing data. C error: Expected 2 field

30条回答
  •  既然无缘
    2020-11-22 05:40

    I had a dataset with prexisting row numbers, I used index_col:

    pd.read_csv('train.csv', index_col=0)
    

提交回复
热议问题