“Python DataFrame Hapus header” Kode Jawaban

Python DataFrame Hapus header

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

Python DataFrame Hapus header

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

Jawaban yang mirip dengan “Python DataFrame Hapus header”

Pertanyaan yang mirip dengan “Python DataFrame Hapus header”

Lebih banyak jawaban terkait untuk “Python DataFrame Hapus header” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya