Skip to content
Advertisement

How to add header row to a pandas DataFrame

I am reading a csv file into pandas. This csv file consists of four columns and some rows, but does not have a header row, which I want to add. I have been trying the following:

JavaScript

But when I apply the code, I get the following Error:

JavaScript

What exactly does the error mean? And what would be a clean way in python to add a header row to my csv file/pandas df?

Advertisement

Answer

You can use names directly in the read_csv

names : array-like, default None List of column names to use. If file contains no header row, then you should explicitly pass header=None

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement