Home > Blockchain >  Using write.csv() function in R but it doesn't actually save it to my C:
Using write.csv() function in R but it doesn't actually save it to my C:

Time:05-02

I'm a newbie and have searched Stack, the internet, everywhere I can think of.. But I cannot figure out why when I use write.csv() in R it doesn't actually save it as a csv file on my computer. All I want is to get a .csv file of my work from RStudio to Tableau and I've spent a week trying to figure it out. Many of the answers I have read use too much coding "lingo" and I cannot translate it because I'm just a beginner. Would be so so thankful for any help. Here is the code I'm using:

""write.csv(daily_steps2,"C:\daily_steps2.csv", row.names = TRUE)""

I put the double quotes around the code because it seems like that's what I'm supposed to do here? IDK, but I don't have those when I run the function. There is no error when I run this, it just doesn't show up as a .csv on my computer. It runs but actually does nothing. Thank you so much for any help.

CodePudding user response:

In my opinion, the simplest way would be to save the file to the same folder that rstudio is running in, and use the rstudio gui. It should be write.csv(daily_steps, "./daily_steps.csv") (no quotes around the function), and then on the tab in the bottom right of rstudio, you can select files, and it should be there. Then you can use the graphic user interface to move it to your desktop in a way analogous to what you would do in MS word.

CodePudding user response:

Quick fix is to use double slashes or forward slash for Windows paths. (Also, since row.names=TRUE is the default, there is no need to specify)

write.csv(daily_steps2, "C:\\daily_steps2.csv")

write.csv(daily_steps2, "C:/daily_steps2.csv")

However, consider the OS-agnostic file.path() and avoid issues of folder separators in file paths including forward slash (used on Unix systems like Mac and Linux) or backslash (used on Windows systems).

write.csv(daily_steps2, file.path("C:", "daily_steps2.csv"))

Another benefit is that because of this functional form to path expression, you can pass dynamic file or folder names without paste.

  •  Tags:  
  • r csv
  • Related