check_diff_prop_ci | R Documentation |
Verifies that and/or convert arguments into valid values to be used in the estimation of difference in responder proportions.
check_diff_prop_ci(rsp, grp, strata = NULL, conf_level, correct = NULL)
rsp |
( |
grp |
( |
strata |
( |
conf_level |
( |
correct |
( |
# example code
## "Mid" case: 4/4 respond in group A, 1/2 respond in group B.
nex <- 100 # Number of example rows
dta <- data.frame(
"rsp" = sample(c(TRUE, FALSE), nex, TRUE),
"grp" = sample(c("A", "B"), nex, TRUE),
"f1" = sample(c("a1", "a2"), nex, TRUE),
"f2" = sample(c("x", "y", "z"), nex, TRUE),
stringsAsFactors = TRUE
)
check_diff_prop_ci(rsp = dta[["rsp"]], grp = dta[["grp"]], conf_level = 0.95)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.