Command to save file does not save file

I am trying to write adataframe to a .csv file, but the data does not get saved. What could be happening?

write.csv(df, file = "path", row.names = FALSE, quote = FALSE )

"path" seems a poor choice for a csv file destination because it doesnt record that .csv should be part of the resulting filename.
probably you did save to 'path' but it wont have the .csv extension because you left that part out.

Thank you for your response.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.