View source: R/svyCreateContTable.R
svyCreateContTable | R Documentation |
Create an object summarizing continous variables optionally stratifying by one or more startifying variables and performing statistical tests. Usually, svyCreateTableOne
should be used as the universal frontend for both continuous and categorical data.
svyCreateContTable( vars, strata, data, test = TRUE, testNormal = svyTestNormal, argsNormal = list(method = "Wald"), testNonNormal = svyTestNonNormal, argsNonNormal = NULL, smd = TRUE, addOverall = FALSE )
vars |
Variable(s) to be summarized given as a character vector. |
strata |
Stratifying (grouping) variable name(s) given as a character vector. If omitted, the overall results are returned. |
data |
A survey design object in which these variables exist. All variables (both vars and strata) must be in this survey design object. It is created with the |
test |
If TRUE, as in the default and there are more than two groups, groupwise comparisons are performed. Both tests that assume normality and tests that do not are performed. Either one of the result can be obtained from the print method. |
testNormal |
A function used to perform the normal assumption based tests. The default is multiple degrees of freedom test using |
argsNormal |
A named list of arguments passed to the function specified in |
testNonNormal |
A function used to perform the nonparametric tests. The default is |
argsNonNormal |
A named list of arguments passed to the function specified in |
smd |
If TRUE, as in the default and there are more than two groups, standardized mean differences for all pairwise comparisons are calculated. |
addOverall |
(optional, only used if strata are supplied) Adds an overall column to the table. Smd and p-value calculations are performed using only the stratifed clolumns. |
An object of class svyContTable
.
Kazuki Yoshida, Alexander Bartel
svyCreateTableOne
, print.svyContTable
, summary.svyContTable
,
## See the examples for svyCreateTableOne()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.