Answers for "how to set row 0 to the column names in python"

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
0

promote a row in panda dataframe to header

df.columns = df.iloc[0]
df = df[1:]
Posted by: Guest on August-25-2020

Code answers related to "how to set row 0 to the column names in python"

Python Answers by Framework

Browse Popular Code Answers by Language