📜  制作第一行列 pandas - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:25.764000             🧑  作者: Mango

代码示例1
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