R.utils (version 0.9.0)

saveObject: Saves an object to a file or a connection

Description

Saves an object to a file or a connection.

Usage

## S3 method for class 'default}(object, file=NULL, path=NULL, compress=TRUE, ...)':
saveObjectundefined

object{The object to be saved.}
 file{A filename or connection where the object should be saved.
   If NULL, the filename will be the hash code of the object plus ".xdr".}
 path{Optional path, if file is a filename.}
 compress{If TRUE, the file is compressed to, otherwise not.}
 ...{Other arguments accepted by save() in the base package.}

Returns (invisibly) the pathname or the connection.

[object Object]

loadObject() to load an object from file.
  digest for how hash codes are calculated from an object.
  Internally save() is used.




programming
IO
internal

Arguments