python pd.DataFrame.from_records remove header

26

df.rename(columns=df.iloc[0]).drop(df.index[0])
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

Comments

Submit
0 Comments