Skip to content
Prev 155022 / 398506 Next

saving an object

Alternatively you can use saveObject() and loadObject() of R.utils -
that will not hardwire the name of the loaded object avoiding name
conflicts, e.g.

library("R.utils");
foo <- 1:10;
saveObject(foo, file="foo.RData");
bar <- loadObject("foo.RData");

/HB

On Thu, Sep 4, 2008 at 8:44 AM, Williams, Robin
<robin.williams at metoffice.gov.uk> wrote: