Define the formatting of the body contents of the table through a series of frmt_structures. Structures get applied in order from bottom up, so the last added structure is the first applied.
See also
frmt_structure()
defines which rows the formats will be applied
to, and frmt()
, frmt_combine()
, and frmt_when()
define the format
semantics.
Examples
tfrmt_spec<- tfrmt(
title = "Table Title",
body_plan = body_plan(
frmt_structure(
group_val = c("group1"),
label_val = ".default",
frmt("XXX")
)
)
)