“Erste Zeile als Spalte DF” Code-Antworten

Machen Sie die ersten Zeilenspalten Pandas

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
Happy Hawk

Erste Zeile als Spalte DF

df.rename(columns=df.iloc[0])
Happy Hawk

Ähnliche Antworten wie “Erste Zeile als Spalte DF”

Fragen ähnlich wie “Erste Zeile als Spalte DF”

Weitere verwandte Antworten zu “Erste Zeile als Spalte DF” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen