| PipelineTools | R Documentation |
Class definition for pipeline tools
Class definition for pipeline tools
The value of the inputs, or a list if key is missing
The values of the targets
A PipelineResult instance if as_promise
or async is true; otherwise a list of values for input names
An environment of shared variables
See type
A table of the progress
Nothing
A new pipeline object based on the path given
the saved file path
the data if file is found or a default value
settings_pathabsolute path to the settings file
extdata_pathabsolute path to the user-defined pipeline data folder
target_tabletable of target names and their descriptions
result_tablesummary of the results, including signatures of data and commands
pipeline_paththe absolute path of the pipeline
pipeline_namethe code name of the pipeline
new()construction function
PipelineTools$new( pipeline_name, settings_file = "settings.yaml", paths = pipeline_root(), temporary = FALSE )
pipeline_namename of the pipeline, usually in the pipeline
'DESCRIPTION' file, or pipeline folder name
settings_filethe file name of the settings file, where the user inputs are stored
pathsthe paths to find the pipeline, usually the parent folder
of the pipeline; default is pipeline_root()
temporarywhether not to save paths to current pipeline
root registry. Set this to TRUE when importing pipelines
from subject pipeline folders
set_settings()set inputs
PipelineTools$set_settings(..., .list = NULL)
..., .listnamed list of inputs; all inputs should be named, otherwise errors will be raised
get_settings()get current inputs
PipelineTools$get_settings(key, default = NULL, constraint)
keythe input name; default is missing, i.e., to get all the settings
defaultdefault value if not found
constraintthe constraint of the results; if input value is not
from constraint, then only the first element of constraint
will be returned.
read()read intermediate variables
PipelineTools$read(var_names, ifnotfound = NULL, ...)
var_namesthe target names, can be obtained via
x$target_table member; default is missing, i.e., to read
all the intermediate variables
ifnotfoundvariable default value if not found
...other parameters passing to pipeline_read
run()run the pipeline
PipelineTools$run(
names = NULL,
async = FALSE,
as_promise = async,
scheduler = c("none", "future", "clustermq"),
type = c("smart", "callr", "vanilla"),
envir = new.env(parent = globalenv()),
callr_function = NULL,
return_values = TRUE,
...
)namespipeline variable names to calculate; default is to calculate all the targets
asyncwhether to run asynchronous in another process
as_promisewhether to return a PipelineResult
instance
scheduler, type, envir, callr_function, return_values, ...passed to
pipeline_run if as_promise is true, otherwise
these arguments will be passed to pipeline_run_bare
eval()run the pipeline in order; unlike $run(), this method
does not use the targets infrastructure, hence the pipeline
results will not be stored, and the order of names will be
respected.
PipelineTools$eval(names, env = parent.frame(), clean = TRUE)
namespipeline variable names to calculate; must be specified
envenvironment to evaluate and store the results
cleanwhether to evaluate without polluting env
shared_env()run the pipeline shared library in scripts starting with
path R/shared
PipelineTools$shared_env()
python_module()get 'Python' module embedded in the pipeline
PipelineTools$python_module(
type = c("info", "module", "shared", "exist"),
must_work = TRUE
)typereturn type, choices are 'info' (get basic information
such as module path, default), 'module' (load module and return
it), 'shared' (load a shared sub-module from the module, which
is shared also in report script), and 'exist' (returns true
or false on whether the module exists or not)
must_workwhether the module needs to be existed or not. If
TRUE, the raise errors when the module does not exist; default
is TRUE, ignored when type is 'exist'.
progress()get progress of the pipeline
PipelineTools$progress(method = c("summary", "details"))methodeither 'summary' or 'details'
attach()attach pipeline tool to environment (internally used)
PipelineTools$attach(env)
envan environment
visualize()visualize pipeline target dependency graph
PipelineTools$visualize( glimpse = FALSE, aspect_ratio = 2, node_size = 30, label_size = 40, ... )
glimpsewhether to glimpse the graph network or render the state
aspect_ratiocontrols node spacing
node_size, label_sizesize of nodes and node labels
...passed to pipeline_visualize
fork()fork (copy) the current pipeline to a new directory
PipelineTools$fork(path, filter_pattern = PIPELINE_FORK_PATTERN)
pathpath to the new pipeline, a folder will be created there
filter_patternfile pattern to copy
with_activated()run code with pipeline activated, some environment variables
and function behaviors might change under such condition (for example,
targets package functions)
PipelineTools$with_activated(expr, quoted = FALSE, env = parent.frame())
exprexpression to evaluate
quotedwhether expr is quoted; default is false
envenvironment to run expr
clean()clean all or part of the data store
PipelineTools$clean(
destroy = c("all", "cloud", "local", "meta", "process", "progress", "objects",
"scratch", "workspaces"),
ask = FALSE
)destroy, asksee tar_destroy
save_data()save data to pipeline data folder
PipelineTools$save_data(
data,
name,
format = c("json", "yaml", "csv", "fst", "rds"),
overwrite = FALSE,
...
)dataR object
namethe name of the data to save, must start with letters
formatserialize format, choices are 'json',
'yaml', 'csv', 'fst', 'rds'; default is
'json'. To save arbitrary objects such as functions or
environments, use 'rds'
overwritewhether to overwrite existing files; default is no
...passed to saver functions
load_data()load data from pipeline data folder
PipelineTools$load_data(
name,
error_if_missing = TRUE,
default_if_missing = NULL,
format = c("auto", "json", "yaml", "csv", "fst", "rds"),
...
)namethe name of the data
error_if_missingwhether to raise errors if the name is missing
default_if_missingdefault values to return if the name is missing
formatthe format of the data, default is automatically obtained from the file extension
...passed to loader functions
clone()The objects of this class are cloneable with this method.
PipelineTools$clone(deep = FALSE)
deepWhether to make a deep clone.
pipeline
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.