Usage
saveToLocalRepo(artifact, repoDir = aoptions("repoDir"), archiveData = TRUE,
archiveTags = TRUE, archiveMiniature = TRUE, archiveSessionInfo = TRUE,
force = TRUE, value = FALSE, ..., userTags = c(),
silent = aoptions("silent"), ascii = FALSE,
artifactName = deparse(substitute(artifact)))saveToRepo(artifact, repoDir = aoptions("repoDir"), archiveData = TRUE,
archiveTags = TRUE, archiveMiniature = TRUE, archiveSessionInfo = TRUE,
force = TRUE, value = FALSE, ..., userTags = c(),
silent = aoptions("silent"), ascii = FALSE,
artifactName = deparse(substitute(artifact)))
asave(artifact, repoDir = aoptions("repoDir"), archiveData = TRUE,
archiveTags = TRUE, archiveMiniature = TRUE, archiveSessionInfo = TRUE,
force = TRUE, value = FALSE, ..., userTags = c(),
silent = aoptions("silent"), ascii = FALSE,
artifactName = deparse(substitute(artifact)))
Arguments
artifact
An arbitrary R artifact to be saved. For supported artifacts see details.
repoDir
A character denoting an existing directory in which an artifact will be saved.
archiveData
A logical value denoting whether to archive the data from the artifact.
archiveTags
A logical value denoting whether to archive Tags from the artifact.
archiveMiniature
A logical value denoting whether to archive a miniature of the artifact.
archiveSessionInfo
A logical value denoting whether to archive the session info that describes the context in this given artifact was created.
force
A logical value denoting whether to archive artifact if it was already archived in
a Repository.
value
A logical value. Should the result be (default value = FALSE) the md5hash
of a stored artifact or should the result be an input artifact (value = TRUE), so that valueing code
can be used. See examples.
...
Graphical parameters denoting width and height of a miniature. See details.
Further arguments passed to head. See Details section about firtsRows parameter userTags
A character vector with Tags. These Tags will be added to the repository along with the artifact.
silent
If TRUE produces no warnings.
ascii
A logical value. An ascii argument is passed to save function. artifactName
The name of the artifact with which it should be archived. If NULL then object's MD5 hash will be used instead.