Home

Published

- 1 min read

export csv in r

img of export csv in r

The solution for this is noted below

export csv in r

Solution

   # to store in the current directory
write.csv(data, "data.csv")

# to store in a separate directory
write.csv(data, "file_path\\data.csv")

Try other methods by searching on the site. That is if this doesn’t work