-2

enter image description here

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

ek.Nik
  • 185
  • 1
  • 8

1 Answers1

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