Create a reproducible example of a targets
pipeline with the reprex package.
tar_reprex(pipeline = tar_target(example_target, 1), run = tar_make(), ...)R code for the target script file _targets.R.
library(targets) is automatically written at the top.
R code to inspect and run the pipeline.
Named arguments passed to reprex::reprex().
A character vector of rendered the reprex, invisibly.
The best way to get help with an issue is to
create a reproducible example of the problem
and post it to https://github.com/ropensci/targets/discussions
tar_reprex() facilitates this process. It is like
reprex::reprex({targets::tar_script(...); tar_make()}),
but more convenient.
Other help:
targets-package,
use_targets(),
use_targets_rmd()
if (identical(Sys.getenv("TAR_INTERACTIVE_EXAMPLES"), "true")) {
tar_reprex(
pipeline = {
list(
tar_target(data, data.frame(x = sample.int(1e3))),
tar_target(summary, mean(data$x, na.rm = TRUE))
)
},
run = {
tar_visnetwork()
tar_make()
}
)
}