R.utils (version 1.1.0)

loadObject: Method to load object from a file or a connection

Description

Method to load object from a file or a connection, which previously have been saved using saveObject().

Usage

## S3 method for class 'default}(file, path=NULL, ...)':
loadObjectundefined

file{A filename or connection to read the object from.}
 path{The path where the file exists.}
  ...{Not used.}

Returns the save object.

The main difference from this method and load() in the base package, is that this one returns the object read rather than storing it in the global environment by its default name. This makes it possible to load objects back using any variable name.
[object Object] saveObject() to save an object to file. Internally load() is used. See also loadToEnv(). programming IO

Arguments