Python - error while loading data from csv to dataframe
While trying to load the CSV file into the pandas data frame received the error.
I got this error
Problem: ParserError: Error tokenizing data. C error: Expected 2 fields in line 398, saw 3
The file was separate by "|" symbol
so we need to use the code
df = pd.read_csv('file.csv', sep='|')
Comments
Post a Comment