Is there a straightforward way to turn the functions of a .RData file into a normal code file (.R)?
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
.
This recent blog post addresses a basically the same problem:
DeadlyStorm
There's another solution from another post using sink
sink(file="Function.R")
Function # The object
sink()
来源:https://stackoverflow.com/questions/3835714/turning-rdata-file-into-script-files