View source: R/drake_plan_helpers.R
bind_plans | R Documentation |
Combine drake plans together in a way that correctly fills in missing entries.
bind_plans(...)
... |
Workflow plan data frames (see |
drake_plan()
, make()
# You might need to refresh your data regularly (see ?triggers).
download_plan <- drake_plan(
data = target(
command = download_data(),
trigger = "always"
)
)
# But if the data don't change, the analyses don't need to change.
analysis_plan <- drake_plan(
usage = get_usage_metrics(data),
topline = scrape_topline_table(data)
)
your_plan <- bind_plans(download_plan, analysis_plan)
your_plan
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.