I made a data.frame in R that is not very big, but it takes quite some time to build. I would to save it as a file, which I can than again open in R?

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

There are several ways. One way is to use save() to save the exact object. e.g. for data frame foo:

save(foo,file="data.Rda")

Then load it with:

load("data.Rda")

You could also use write.table() or something like that to save the table in plain text, or dput() to obtain R code to reproduce the table.

link|improve this answer
There is also dump and files created would be source()-ed, although the help(dump) page says save is "safer". – DWin Dec 1 '11 at 17:44
I always prefer storing data in plain text, so I'd prefer dump() over save(), and write.table() over dump() – Sacha Epskamp Dec 1 '11 at 17:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.