Write a clinify table out to a docx file
Examples
ct <- clintable(mtcars)
ct <- clin_alt_pages(
ct,
key_cols = c('mpg', 'cyl', 'hp'),
col_groups = list(
c('disp', 'drat', 'wt'),
c('qsec', 'vs', 'am'),
c('gear', 'carb')
)
)
write_clintable(ct, file.path(tempdir(), 'demo.docx'))
#> NOTE: Alternating pages were set, but no selection for row wise pagination was configured Defaulting to 20 rows per page.