pandas how to give header for rows and columns both code example
Example 1: set header in dataframe 2nd line
In [23]: df.columns = df.iloc[1]
Example 2: make first row column names pandas
df.rename(columns=df.iloc[0])
Example 3: make first row column names pandas
In [24]: df.drop(df.index[1])
Out[24]:
1 foo bar baz
0 1 2 3
2 4 5 6