“Python DataFrame Usuń nagłówek” Kod odpowiedzi

Python DataFrame Usuń nagłówek

df.rename(columns=df.iloc[0]).drop(df.index[0])
Ian Selley

Python DataFrame Usuń nagłówek

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
Ian Selley

Odpowiedzi podobne do “Python DataFrame Usuń nagłówek”

Pytania podobne do “Python DataFrame Usuń nagłówek”

Więcej pokrewnych odpowiedzi na “Python DataFrame Usuń nagłówek” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu