View source: R/create-table-one.R
dh.createTableOne | R Documentation |
dh.getStats extracts key statistics and stores them in a clientside list. dh.createTableOne builds on this by formatting the extract stats into a table which can then be included in a manuscript. Flexible formatting options are included.
dh.createTableOne(
stats = NULL,
vars = NULL,
var_labs = NULL,
cat_labs = NULL,
type = NULL,
coh_labs = NULL,
coh_direction = "cols",
cont_format = NULL,
inc_missing = NULL,
sig_digits = 3,
perc_denom = NULL
)
stats |
Exported object from dh.getStats. |
vars |
Variable to be included in table. |
var_labs |
Tibble with two columns: 'variable' containing the
names of the variables specified in |
cat_labs |
Tibble with three columns: 'variable' containing the
names of the categorical variables specified in |
type |
Character specifying which cohorts to include in the table. If "combined" then only combined stats will be returned, if "cohort" then only cohort-specific stats will be returned, if "both" then everything will be returned. |
coh_labs |
Tibble with two columns: 'cohort' containing the names
of all cohorts included in |
coh_direction |
Character specifying direction of data if |
cont_format |
Character specifying which summary statistic to return for continuous stats. Use 'med_iqr' to return the median and interquartile range, use 'mean_sd' to return the mean and standard deviation. Default is "med_iqr". |
inc_missing |
Boolean specifying whether to return missing values in the output. Use TRUE for yes and FALSE for no. |
sig_digits |
Optionally, the number of decimal places to round output to. Default is 2. |
perc_denom |
The denominator for percentages. Either 'valid' for valid cases or 'total' for total cases. |
Tibble containing formatted summary statistics. If coh_direction
is
'cols', the tibble will contain four columns: 'cohort', 'variable',
'category' & value. If coh_direction
is rows, the tibble will contain the
column 'cohort' as well as as columns for all continuous variables and all
categories of categorical variables.
Other descriptive functions:
dh.anyData()
,
dh.classDiscrepancy()
,
dh.getStats()
,
dh.lmTab()
,
dh.meanByGroup()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.