write_tb_to_csv() is a Write function that writes a file to a specified local directory. Specifically, this function implements an algorithm to write tibble to comma separated variables file. The function is called for its side effects and does not return a value.
write_tb_to_csv(
tbs_r4,
slot_nm_1L_chr,
r4_name_1L_chr,
lup_dir_1L_chr,
pfx_1L_chr,
consent_1L_chr = "",
consent_indcs_int = 1L,
options_chr = c("Y", "N")
)
No return value, called for side effects.
Tibbles (a ready4 module)
Slot name (a character vector of length one)
Ready4 module name (a character vector of length one)
Lookup table directory (a character vector of length one)
Prefix (a character vector of length one)
Consent (a character vector of length one), Default: ''
Consent indices (an integer vector), Default: 1
Options (a character vector), Default: c("Y", "N")