Answers for "python dataframe remove header"

0

python dataframe remove header

df.rename(columns=df.iloc[0]).drop(df.index[0])
Posted by: Guest on February-21-2021
1

python dataframe remove header

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 February-21-2021

Code answers related to "python dataframe remove header"

Python Answers by Framework

Browse Popular Code Answers by Language