R/extensions-export_kfa_report.R
bp_export_kfa_report.Rd
Instruct blueprint to generate kfa report
bp_export_kfa_report(
bp,
scale,
path = NULL,
path_pattern = NULL,
format = NULL,
title = NULL,
kfa_args = list(),
...
)
A blueprint
Which scale(s) to analyze
Path(s) to where the report(s) should be saved
Override the default location to save files (always rooted to the project root with here::here())
The output format of the report(s)
Optional title of report
Arguments forwarded to kfa::kfa()
for this batch
of scales
Arguments forwarded to the executing engine e.g. targets::tar_target_raw() or drake::target()
An amended blueprint with the kfa report export instructions
if (FALSE) { # \dontrun{
test_bp <- blueprint(
"mtcars_dat",
description = "The mtcars dataset",
command = mtcars
)
new_bp <- test_bp %>% bp_export_codebook()
} # }