R语言在write.csv()时出现警告
>write.csv(df2, "fliter.csv", header = FALSE, row.names = FALSE)
Warning message:
In write.csv(df2, "fliter.csv", row.names = FALSE, col.names = TRUE) :
不能修改'col.names'
在网上看到的帮助:不大懂意思:
以下内容源于R的帮助:
【write.csv and write.csv2 provide convenience wrappers for writing CSV files. They set sep and dec (see below), qmethod = "double", and col.names to NA if row.names = TRUE (the default) and to TRUE otherwise. write.csv uses "."】
按照这个解释,对于write.csv这个函数,它会自动根据row.names参数的值设定col.names的值,所以只需设定row.names参数就可以了,如果再指定col.names参数,R就发出警告,意思是这个参数不能独立设定,也不算错误。
我想把表的字段名(第一行去掉)
如果你只是想保存的数据不包含行名称和列名称的话,建议使用write.table()不要用write.csv()
具体如下:
关于write.csv()的问题,通过help("write.csv")可以看到(CSV files标题下方):
write.csv and write.csv2 provide convenience wrappers for writing CSV files. They set sep and dec (see below), qmethod = "double", and col.names to NA if row.names = TRUE (the default) and to TRUE otherwise.
...
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, with a warning.
简单点说,也就是在使用write.csv()时,col.names是无法随意调整的,这是write.csv()的设定。
所以遇到类似需求时使用write.table()即可,不过需自己设定sep等其他参数,具体可参看write.table()的帮助文档。