Target factory for workflowr R markdown reports.
Source:R/tar_render_workflowr.R
tar_render_workflowr.Rd
Generates a list of target objects to render multiple workflowr R markdown reports.
Usage
tar_render_workflowr(
include = NULL,
exclude = NULL,
include_pattern = NULL,
exclude_pattern = "^_",
verbose = FALSE
)
Arguments
- include
Optional character vector of .Rmd files to be rendered.
- exclude
Optional character vector of .Rmd files to be excluded.
- include_pattern
By default, include all .Rmd files in
workflowr_dir
.- exclude_pattern
By default, exclude any files with names prefixed by "_".
- verbose
If
TRUE
, prints a message listing the .Rmd files for which targets will be created. Also passed on toworkflowr::wflow_build()
.