Learn R Programming

strata (version 1.4.3)

adhoc_lamina: Execute a single lamina ad hoc

Description

adhoc_lamina() will execute only the lamina and the code therein contained as specified by lamina_path with or without log messages.

Usage

adhoc_lamina(lamina_path, silent = FALSE)

Value

invisible data frame of execution plan.

Arguments

lamina_path

Path to lamina.

silent

Suppress log messages? If FALSE (the default), log messages will be printed to the console. If TRUE, log messages will be suppressed.

See Also

Other adhoc: adhoc(), adhoc_stratum()

Examples

Run this code
tmp <- fs::dir_create(fs::file_temp())
result <- strata::build_quick_strata_project(tmp, 1, 1)
adhoc_lamina(
  fs::path(tmp, "strata", "stratum_1", "s1_lamina_1"),
)
fs::dir_delete(tmp)

Run the code above in your browser using DataLab