Answers for "first row as column names in pandas"

2

make first row column names pandas

new_header = df.iloc[0] #grab the first row for the header
df = df[1:] #take the data less the header row
df.columns = new_header #set the header row as the df header
Posted by: Guest on April-23-2020
-1

make first row column names pandas

df.rename(columns=df.iloc[0])
Posted by: Guest on April-23-2020
0

set header in dataframe 2nd line

In [23]: df.columns = df.iloc[1]
Posted by: Guest on April-28-2020
-1

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
Posted by: Guest on April-23-2020

Code answers related to "first row as column names in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language