gt_group {gt} | R Documentation |
Create a gt_group
container for holding multiple gt table objects
Description
gt_group()
creates a container for storage of multiple gt
tables. This type of object allows for flexibility in printing multiple
tables in different output formats. For example, if printing multiple tables
in a paginated output environment (e.g., RTF, Word, etc.), each gt table
can be printed independently and table separation (usually a page break)
occurs between each of those.
Usage
gt_group(..., .list = list2(...), .use_grp_opts = FALSE)
Arguments
... |
One or more gt table data objects
One or more gt table ( |
.list |
Alternative to
Allows for the use of a list as an input alternative to |
.use_grp_opts |
Apply options to all contained tables?
Should options specified in the |
Value
An object of class gt_group
.
Function ID
14-1
Function Introduced
v0.9.0
(Mar 31, 2023)
See Also
Other table group functions:
grp_add()
,
grp_clone()
,
grp_options()
,
grp_pull()
,
grp_replace()
,
grp_rm()
,
gt_split()