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.
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.
Hello try this skiprow option from pandas
pandas.read_csv(filepath_or_buffer, skiprows=4)