“python pd.dataframe.from_records remove o cabeçalho” Respostas de código

python pd.dataframe.from_records remove o cabeçalho

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

python pd.dataframe.from_records remove o cabeçalho

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

Respostas semelhantes a “python pd.dataframe.from_records remove o cabeçalho”

Perguntas semelhantes a “python pd.dataframe.from_records remove o cabeçalho”

Mais respostas relacionadas para “python pd.dataframe.from_records remove o cabeçalho” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código