Is there a straightforward way to turn the functions of a .RData file into a normal code file (.R)?

link|improve this question

feedback

2 Answers

up vote 12 down vote accepted

Check out ?dump. For example:

newEnv <- new.env()
load("myFunctions.Rdata", newEnv)
dump(c(lsf.str(newEnv)), file="normalCodeFile.R", envir=newEnv)

You may also be interested in ?prompt (which creates documentation files for objects) and / or ?package.skeleton.

link|improve this answer
Great update Joshua. I updated my post to include your solution as well. r-statistics.com/2010/09/… – Tal Galili Oct 2 '10 at 7:07
feedback

This recent blog post addresses a basically the same problem:

http://www.r-statistics.com/2010/09/dumping-functions-from-the-global-environment-into-an-r-script-file/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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