promote a row in panda dataframe to header

Solutions on MaxInterview for promote a row in panda dataframe to header by the best coders in the world

showing results for - "promote a row in panda dataframe to header"
Emma
27 May 2017
1df.columns = df.iloc[0]
2df = df[1:]