“Baris pertama sebagai kolom DF” Kode Jawaban

Buat kolom baris pertama panda

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

Baris pertama sebagai kolom DF

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

Jawaban yang mirip dengan “Baris pertama sebagai kolom DF”

Pertanyaan yang mirip dengan “Baris pertama sebagai kolom DF”

Lebih banyak jawaban terkait untuk “Baris pertama sebagai kolom DF” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya