Displaying 1 result from an estimated 1 matches for "mynewfunc".
2001 Sep 27
2
Getting your stuff organized in R
...position.
10.Sometime wou will want to add an object from your workspace to an existing R disk file.
For example, you'll want to add a new function developped in your workspace to
the functions file of your project. You just need the option append in dump() for this
purpose:
> dump("mynewfunc",file="proj1funcs.R",append=T)
It's a bit more complicated to add a data object to an R binary file, because
there is not an "append" option in save(). But you can use ls() in the following way:
> search()
[1] ".GlobalEnv" "package:ctest" &...