twostage: Two-stage procedure for comparing hazard rate functions

Description Usage Arguments Details Value References Examples

Description

Two-stage procedure for comparing hazard rate functions, especially suited for situation where hazard rate functions cross.

Usage

1
twostage(time, delta, group, nboot, alpha = 0.05, eps = 0.1)

Arguments

time

a vector of type "numeric". Must be nonnegative. Failure time or censoring time.

delta

a vector of type "numeric" of the same length as time. Must be zero or one. One indicates failure, zero indicates censored.

group

a vector of type "numeric" of the same length as time. Must be zero or one. One indicates treatment group, zero indicates control group.

nboot

number of bootstrap samples. Must be positive integer.

alpha

significance level, must be between zero and one.

eps

small number used in defining the test statistic. Must be between zero and one. See cited paper for discussion.

Details

This procedure compares two hazard rate functions in two stages. In the first stage, the conventional log-rank test is performed, which is powerful only when the two hazard rate functions do not cross each other. When the two hazard rate functions cross each other, positive differences and negative differences between the two functions would be canceled out in the log-rank test statistic, resulting in ineffective comparison. If the log-rank test gives a significant result, then the entire two-stage procedure stops and we conclude that the two hazard rate functions are significantly different. Otherwise, the stage-II test is performed, which is designed specifically for detecting crossing difference between the two hazard rate functions and has the property that its test statistic is independent of the log-rank test statistic. The independence property is used in properly defining the p-value of the two-stage procedure, based on the p-values of the two individual tests.

Value

vector of P-values. "LRPV": p-value of the log-rank test, "MTPV": p-value of the suggested stage-II test, "TSPV": p-value of the two-stage test.

References

Qiu, P. and Sheng, J. (2008). A two-stage procedure for comparing hazard rate functions. Journal of the Royal Statistical Society: Series B, 70:191-208.

Examples

1
2
3
4
library(TSHRC)
data(rats)
attach(rats)
twostage(time, delta, group, nboot = 100)

Example output

      LRPV       MTPV       TSPV 
0.00337166 0.04000000 0.00337166 

TSHRC documentation built on May 2, 2019, 6:50 a.m.

Related to twostage in TSHRC...