Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单的问题 - 我在 R 中使用 write.csv 函数:
write.csv(t(y), file = "test.csv")
其中 y 是我目录中文件的数据框
但是,我的目录中有很多文件,我希望通过使用循环将每个文件的输出写入“test.csv”。但是,只是测试一下,我注意到如果我写入 test.csv,然后用另一个文件重复该命令,而不是添加它会覆盖 test.csv 而不是添加到它。
所以我的问题是如何添加到 test.csv 而不是覆盖它。
非常感谢。
write.csv(t(y), file = "test.csv", append=TRUE)
应该这样做。