“Python pd.dataframe.from_records Usuń nagłówek” Kod odpowiedzi

Python pd.dataframe.from_records Usuń nagłówek

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

Python pd.dataframe.from_records 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 pd.dataframe.from_records Usuń nagłówek”

Pytania podobne do “Python pd.dataframe.from_records Usuń nagłówek”

Więcej pokrewnych odpowiedzi na “Python pd.dataframe.from_records Usuń nagłówek” w Python

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

Przeglądaj inne języki kodu