Render Cell Suppression (Default)
render_cell_suppression.default.Rd
This is a wrapper around the render functions for each type of variable.
Arguments
- x
(
vector
)
A vector of numeric, factor, character or logical values.- name
(
character
)
Name of the variable to be rendered (ignored).- missing
(
logical
)
Should missing values be included?- transpose
(
logical
)
Logical indicating whether on not the table is transposed.- render.empty
(
character
)
A character to return when x is empty.- render.continuous
(
function
)
A function to render continuous (i.e. numeric) values. Can also be a character string, in which case it is passed totable1:::parse.abbrev.render.code()
.- render.categorical
(
function
)
A function to render categorical (i.e. factor, character or logical) values. Can also be a character string, in which case it is passed totable1:::parse.abbrev.render.code()
.- render.missing
(
function
)
A function to render missing (i.e. NA) values. Can also be a character string, in which case it is passed totable1:::parse.abbrev.render.code()
. Set toNULL
to ignore missing values.- ...
Further arguments, passed totable1:::stats.apply.rounding()
orprettyNum()
for additional formatting (e.g.,big.mark = ","
).