Python Pandas Error tokenizing data

后端 未结 30 2754
不知归路
不知归路 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:39

    The parser is getting confused by the header of the file. It reads the first row and infers the number of columns from that row. But the first two rows aren't representative of the actual data in the file.

    Try it with data = pd.read_csv(path, skiprows=2)

提交回复
热议问题