Answers for "python syntax to make the first column as the first row of a dataframe"

2

make first row columns 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

first row as column df

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

Code answers related to "python syntax to make the first column as the first row of a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language