gpt4 book ai didi

r - 将数据框写入R中没有列标题的csv文件

转载 作者:行者123 更新时间:2023-12-03 07:25:53 25 4
gpt4 key购买 nike

我想将数据框的内容存储到不包含列名称的 .csv 文件中。我使用下面的代码,

write.csv(cur_data,new_file, row.names = F, col.names=F)

生成的文件如下所示,

"V1","V2"
-0.02868862,5.442283e-11
-0.03359281,7.669754e-12
-0.03801883,-1.497323e-10
-0.04320051,-6.557672e-11

但是我想要以下格式的文件,

-0.02868862,5.442283e-11
-0.03359281,7.669754e-12
-0.03801883,-1.497323e-10
-0.04320051,-6.557672e-11

我不明白为什么代码中没有考虑 col.names 参数

最佳答案

不要使用write.csv,使用write.table

 write.table( <yourdf>, sep=",",  col.names=FALSE)

您无法更改 write.csv 中的许多设置 - 这些参数只是作为对用户的提醒。来自文档:

These wrappers are deliberately inflexible: they are designed to ensure that the correct conventions are used to write a valid file. Attempts to change append, col.names, sep, dec or qmethod are ignored

关于r - 将数据框写入R中没有列标题的csv文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19227243/

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