Learn R Programming

lrstat (version 0.2.13)

zstatRiskDiff: Miettinen-Nurminen Score Test Statistic for Two-Sample Risk difference

Description

Obtains the Miettinen-Nurminen score test statistic for two-sample risk difference possibly with stratification.

Usage

zstatRiskDiff(
  riskDiffH0 = 0,
  n1 = NA_real_,
  y1 = NA_real_,
  n2 = NA_real_,
  y2 = NA_real_
)

Value

The value of the score test statistic.

Arguments

riskDiffH0

The risk difference under the null hypothesis. Defaults to 0.

n1

The sample size for the active treatment group.

y1

The number of responses for the active treatment group.

n2

The sample size for the control group.

y2

The number of responses for the control group.

Author

Kaifeng Lu, kaifenglu@gmail.com

Details

The Mantel-Haenszel sample size weights are used for stratified samples.

Examples

Run this code

zstatRiskDiff(riskDiffH0 = 0, n1 = c(10,10), y1 = c(4,3),
              n2 = c(20,10), y2 = c(2,0))

Run the code above in your browser using DataLab