This question has been asked several times, but I haven't found a solution. I have an rda R file (df) that I want to save as a non binary file (such as txt or csv) so I can use it in a text editor program...
Is there a way to do this?
Right now using write.csv(df, file=out.csv)
or even, saveRDS(df, file=out.rds)
gives me an empty file.
What am I missing here....
EDIT: I'm working with an rda file not an rds file as stated originally