tar_seed | R Documentation |
Deprecated on 2023-10-12 (version 1.3.2.9001).
Use tar_seed_get()
instead.
tar_seed(default = 1L)
default |
Integer, value to return if |
Integer of length 1. If invoked inside a targets
pipeline,
the return value is the seed of the target currently running,
which is a deterministic function of the target name. Otherwise,
the return value is default
.
tar_seed_get()
tar_seed_get(default = 123L)
if (identical(Sys.getenv("TAR_EXAMPLES"), "true")) { # for CRAN
tar_dir({ # tar_dir() runs code from a temp dir for CRAN.
tar_script(tar_target(returns_seed, tar_seed_get()), ask = FALSE)
tar_make()
tar_read(returns_seed)
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.