chevron_t
, a subclass of chevron_tlg with specific validation criteria to handle table creation
chevron_l
, a subclass of chevron_tlg with specific validation criteria to handle listing creation
chevron_g
, a subclass of chevron_tlg with specific validation criteria to handle graph creation
chevron_simple
, a subclass of chevron_tlg, where main function is a simple call
Usage
chevron_t(
main = function(adam_db, ...) build_table(basic_table(), adam_db[[1]]),
preprocess = function(adam_db, ...) adam_db,
postprocess = std_postprocessing,
...
)
chevron_l(
main = function(adam_db, ...) data.frame(),
preprocess = function(adam_db, ...) adam_db,
postprocess = std_postprocessing,
...
)
chevron_g(
main = function(adam_db, ...) ggplot2::ggplot(),
preprocess = function(adam_db, ...) adam_db,
postprocess = std_postprocessing,
...
)
chevron_simple()
Arguments
- main
(
function
) returning atlg
, withadam_db
as first argument. Typically one of the_main
function ofchevron
.- preprocess
(
function
) returning a pre-processedlist
ofdata.frames
, withadam_db
as first argument. Typically one of the_pre
function ofchevron
.- postprocess
(
function
) returning a post-processedtlg
, withtlg
as first argument.- ...
not used
Value
a chevron_t
class object.
a chevron_l
class object.
a chevron_g
class object.
a chevron_simple
class object.
Slots
main
(
function
) returning atlg
. Typically one of the*_main
function fromchevron
.preprocess
(
function
) returning a pre-processedlist
ofdata.frames
amenable totlg
creation. Typically one of the*_pre
function fromchevron
.postprocess
(
function
) returning a post-processedtlg
. Typically one of the*_post
function fromchevron
.
Note
To ensure the correct execution of the workflow, additional validation criteria are:
the first argument of the
main
function must beadam_db
, the inputlist
ofdata.frames
to pre-process. The...
argument is mandatory.the first argument of the
preprocess
function must beadam_db
, the inputlist
ofdata.frames
to createtlg
output. The...
argument is mandatory.the first argument of the
postprocess
function must betlg
, the inputTableTree
object to post-process. The...
argument is mandatory.
Examples
chevron_t_obj <- chevron_t()
chevron_t_obj <- chevron_t(postprocess = function(tlg, indent, ...) {
rtables::table_inset(tlg) <- indent
tlg
})
chevron_l_obj <- chevron_l()
chevron_g_obj <- chevron_g()
chevron_g_obj <- chevron_g(
postprocess = function(tlg, title, ...) tlg + ggplot2::labs(main = title)
)
chevron_simple_obj <- chevron_simple()