gpt4 book ai didi

python - 如何删除列名

转载 作者:太空狗 更新时间:2023-10-29 19:36:23 28 4
gpt4 key购买 nike

我只想删除列名 (x,y,z),并且只使用数据。

In [68]: df
Out[68]:
x y z
0 1 0 1
1 2 0 0
2 2 1 1
3 2 0 1
4 2 1 0

我想打印结果如下。

Out[68]: 

0 1 0 1
1 2 0 0
2 2 1 1
3 2 0 1
4 2 1 0

这可能吗?我该怎么做?

最佳答案

默认情况下在 pandas 中需要列名。

但如果真的想要'remove' 列,强烈不推荐这样做,因为可能会得到重复的列名并分配空字符串:

df.columns = [''] * len(df.columns)

但如果需要将df写入没有列和索引的文件,请添加参数header=Falseindex=Falseto_csvto_excel .

df.to_csv('file.csv', header=False, index=False)

df.to_excel('file.xlsx', header=False, index=False)

关于python - 如何删除列名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44917675/

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