render.missing.default: Render missing values for table output.

View source: R/table1.R

render.missing.defaultR Documentation

Render missing values for table output.

Description

Called from table1 by default to render missing (i.e. NA) values for displaying in the table.

Usage

render.missing.default(x, ...)

Arguments

x

A vector.

...

Further arguments, passed to stats.apply.rounding.

Value

A character vector. Each element is to be displayed in a separate cell in the table. The names of the vector are the labels to use in the table. Empty strings are allowed and result in empty table cells.

Examples

y <- factor(sample(0:1, 99, replace=TRUE), labels=c("Female", "Male"))
y[1:10] <- NA
render.missing.default(y)

table1 documentation built on Jan. 6, 2023, 5:07 p.m.