Skip to contents

Function for making Table One.

Usage

tableone(data, vars, sty = "t1", excl = FALSE)

Arguments

data

The data as a data frame.

vars

a string naming the variables from data that contains the values used for the Table One.

sty

a string naming the style of the table.

excl

a boolean argument whether to exclude missing values. Default is false.

Value

A results object containing:

results$todoa html
results$tablestyle1a preformatted
results$tablestyle2a html
results$tablestyle3a html
results$tablestyle4a preformatted

Examples

# \donttest{
data('histopathology')
#> Warning: data set ‘histopathology’ not found
dat <- as.data.frame(histopathology)
ClinicoPath::tableone(
data = dat,
vars = vars(Sex, PreinvasiveComponent, LVI, PNI, Grade, Age),
sty = "t3",
excl = TRUE)
#> Error in loadNamespace(x): there is no package called ‘ClinicoPath’
# }