0

The real dataset is a. csv file. But first four rows is not in csv format except all rows are in csv I have added the screen shot of the csv fileformat.

How to read that csv file using pd. read_csv without the first 4 rows.

1 Answers1

0

Hello try this skiprow option from pandas

pandas.read_csv(filepath_or_buffer, skiprows=4)
t.abraham
  • 108
  • 1
  • 9