Learn R Programming

drake (version 3.0.0)

loadd: Function loadd

Description

Load object(s) from the drake cache into the current workspace (or envir if given). Defaults to loading the whole cache if arguments ... and list are not set (or all the imported objects if in addition imported_only is TRUE).

Usage

loadd(..., list = character(0), imported_only = FALSE, path = getwd(),
  search = TRUE, envir = parent.frame())

Arguments

...

targets to load from the cache, as names (unquoted) or character strings (quoted). Similar to ... in remove(...).

list

character vector naming targets to be loaded from the cache. Similar to the list argument of remove().

imported_only

logical, whether only imported objects should be loaded.

path

Root directory of the drake project, or if search is TRUE, either the project root or a subdirectory of the project.

search

logical. If TRUE, search parent directories to find the nearest drake cache. Otherwise, look in the current working directory only.

envir

environment to load objects into. Defaults to the calling environment (current workspace).

See Also

cached, built, imported, plan, make,