rate_compare {metalite.ae} | R Documentation |
Unstratified and stratified Miettinen and Nurminen test
Description
Unstratified and stratified Miettinen and Nurminen test details can be found
in vignette("rate-compare")
.
Usage
rate_compare(
formula,
strata,
data,
delta = 0,
weight = c("ss", "equal", "cmh"),
test = c("one.sided", "two.sided"),
bisection = 100,
eps = 1e-06,
alpha = 0.05
)
Arguments
formula |
A symbolic description of the model to be fitted,
which has the form |
strata |
An optional vector of weights to be used in the analysis. If not specified, unstratified MN analysis is used. If specified, stratified MN analysis is conducted. |
data |
An optional data frame, list, or environment containing
the variables in the model.
If not found in data, the variables are taken from |
delta |
A numeric value to set the difference of two group under the null. |
weight |
Weighting schema used in stratified MN method.
Default is
|
test |
A character string specifying the side of p-value,
must be one of |
bisection |
The number of sections in the interval used in bisection method. Default is 100. |
eps |
The level of precision. Default is 1e-06. |
alpha |
Pre-defined alpha level for two-sided confidence interval. |
Value
A data frame with the test results.
References
Miettinen, O. and Nurminen, M, Comparative Analysis of Two Rates. Statistics in Medicine, 4(2):213–226, 1985.
Examples
# Conduct the stratified MN analysis with sample size weights
treatment <- c(rep("pbo", 100), rep("exp", 100))
response <- c(rep(0, 80), rep(1, 20), rep(0, 40), rep(1, 60))
stratum <- c(rep(1:4, 12), 1, 3, 3, 1, rep(1:4, 12), rep(1:4, 25))
rate_compare(
response ~ factor(treatment, levels = c("pbo", "exp")),
strata = stratum,
delta = 0,
weight = "ss",
test = "one.sided",
alpha = 0.05
)