gpt4 book ai didi

python - 数据框将标题行转换为行 Pandas

转载 作者:行者123 更新时间:2023-12-03 13:45:46 29 4
gpt4 key购买 nike

有一个带值的 df

df:

165  156  1    test    greater 56gsa
-------------------------------------
spin 201 2 normal lesser 12asgs
pine 202 3 fast greater 5sasgs


所需输出:
0     1   2     3        4       5
-------------------------------------
165 156 1 test greater 56gsa
spin 201 2 normal lesser 12asgs
pine 202 3 fast greater 5sasgs

最佳答案

如果 DataFrame 是从文件创建的,那么 header=None参数是你的 friend :

df = pd.read_csv(file, header=None)

如果不是,则将列转换为一行 DataFrame DataFrame.append 到原始数据:
df = df.columns.to_frame().T.append(df, ignore_index=True)
df.columns = range(len(df.columns))
print (df)
0 1 2 3 4 5
0 165 156 1 test greater 56gsa
1 spin 201 2 normal lesser 12asgs
2 pine 202 3 fast greater 5sasgs

关于python - 数据框将标题行转换为行 Pandas ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59783735/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com