Convert summary statistics table to flextable
convertSummaryStatisticsTableToFlextable(
summaryTable,
colHeaderMerge = TRUE,
landscape = (style == "presentation"),
margin = 1,
rowPadBase = 14.4,
title = NULL,
footer = NULL,
style = "report",
colorTable = getColorPaletteTable(style = style),
fontname = switch(style, report = "Times", presentation = "Tahoma"),
fontsize = switch(style, report = 8, presentation = 10),
file = NULL,
pageDim = NULL,
columnsWidth = NULL
)
flextable
object with summary table
If summaryTable
is a list of summary tables,
returns a list of flextable
.
A summaryTable
object.
(flextable output) Logical, if TRUE (FALSE by default) the column header is merged.
(flextable output) Logical, if TRUE the file is in landscape format.
By default: FALSE if style
is 'report' and TRUE if style
is 'presentation'.
(flextable output) Margin in the document in inches
(1 by default).
This is used to specify the width of the table, from:
[pageDim[1]
- 2 * margin].
(flextable output) Base padding for row (in points), 14.4 by default (corresponds to 0.2 inches)
Character vector with title(s) for the table.
Set to NULL (by default) if no title should be included.
If multiple are specified, specified for each element of byVar
(in order of the levels).
(flextable output) Character vector with footer(s) for the table. Set to NULL (by default) if no footer should be included.
(flextable output) String with table style, either 'report' or 'presentation'. This parameter affects the fontsize, font family, color of the text and background, and table dimensions of the table.
(flextable output) Named character vector with color for the table background/body/text/line,
e.g. created with the getColorPaletteTable
function.
(flextable output) String with font name, by default:
'Times' if style
is 'report' and 'Tahoma' if style
is 'presentation'.
(flextable output) Integer with font size, by default:
8 if style
is 'report' and 10 if style
is 'presentation'.
String with path of the file where the table should be exported.
The file should have the extension: '.html'.
If NULL, the summary table is not exported but only returned as output.
If byVar
is specified, each table is exported to a separated
file with the suffix: 'file_[i].html' with i the index of the file.
Numeric vector of length 2 with page width and height.
Depending on outputType
:
'flextable': in inches
'DT': in number of rows in the table.
Currently only the height is used (e.g. c(NA, 4)
)
(expert mode) Column widths of the table. This is only used
for flextable and DT tables.
For flextable, note that the widths should be set to fit into the document page
(see getDimPage
).
Laure Cougnaud