Displaying 1 result from an estimated 1 matches for "sctratchwork".
2002 Dec 20
0
RE workspace vs. image
...two functions, say to position 2. This I
do in my etc/Rprofile file. (2) then attach one or more .Rdata workspaces to
additional positions in the search path. These contain data and/or
user-defined functions relevant to the current problem. Position 1 of the
search, .GlobalEnv is then used only for sctratchwork.
move(obj,pos=3) moves obj from .GlobalEnv to the environent of position 3,
saves that environment to the associated .Rdata file, and removes obj from
.GlobalEnv.
rm.sv(obj,pos=3) removes obj from the environment at position 3 and then
saves the remaining objects to the associated .Rdata file.
T...