Hello,I was trying to use that code https://community.rstudio.com/t/export-rstudio-data-to-excel/7579/4 so I can export this with name nn.csv. I want to export the Data_passed_slim
Asked
Active
Viewed 85 times
1 Answers
0
Native R: write.csv(Data_passed_slim, "nn.csv")
.
See ?write.csv
for documentation.
But, for larger datasets I would recommend using data.table::fwrite()
. Documentation: https://www.rdocumentation.org/packages/data.table/versions/1.14.0/topics/fwrite

Konrad Stawiski
- 351
- 2
- 10
-
-
It will be saved in working directory. Use `getwd()` to know where it is or `setwd()` to change it. – Konrad Stawiski May 24 '21 at 23:09
-