Use drake_plan()
with transformations instead. See
https://books.ropensci.org/drake/plans.html#large-plans
for details.
plan_summaries(
plan,
analyses,
datasets,
gather = rep("list", nrow(plan)),
sep = "_"
)
An evaluated workflow plan data frame of instructions for computing summaries of analyses and datasets. analyses of multiple datasets in multiple ways.
Workflow plan data frame with commands for the summaries.
Use the analysis__
and dataset__
wildcards
just like the dataset__
wildcard in plan_analyses()
.
Workflow plan data frame of analysis instructions.
Workflow plan data frame with instructions to make or import the datasets.
Character vector, names of functions to gather the
summaries. If not NULL
, the length must be the number of
rows in the plan
. See the gather_plan()
function
for more.
Character scalar, delimiter for creating the new target names.
2019-01-13