Hmisc (version 3.0-10)

Save: Faciliate Use of save and load to Remote Directories

Description

These functions are slightly enhanced versions of save and load that allow a target directory to be specified using options(LoadPath="pathname"). If the LoadPath option is not set, the current working directory is used.

Usage

# options(LoadPath='mypath')
Save(object)
Load(object)

Arguments

object
the name of an object, usually a data frame. It must not be quoted.

Details

Save creates a temporary version of the object under the name given by the user, so that save will internalize this name. Then subsequent Load or load will cause an object of the original name to be created in the global environment. The name of the Rdata file is assumed to be the name of the object appended with ".rda". For Save, compression is used.

See Also

save, load

Examples

Run this code
d <- data.frame(x=1:3, y=11:13)
options(LoadPath='../data/rda')
Save(d)   # creates ../data/rda/d.rda
Load(d)   # reads   ../data/rda/d.rda

Run the code above in your browser using DataCamp Workspace