📜  python pd.DataFrame.from_records 删除标头 - Python 代码示例

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

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