survival (version 2.9-6)

strata: Identify Strata Variables

Description

This is a special function used in the context of the Cox survival model. It identifies stratification variables when they appear on the right hand side of a formula.

Usage

strata(..., na.group=F, shortlabel=F)

Arguments

...
any number of variables. All must be the same length.
na.group
a logical variable, if TRUE, then missing values are treated as a distinct level of each variable.
shortlabel
if TRUE omit variable names from resulting factor labels

Value

  • a new factor, whose levels are all possible combinations of the factors supplied as arguments.

Details

The result is identical to the interaction function, but for the labeling of the factors (strata is more verbose).

See Also

coxph,interaction

Examples

Run this code
a<-factor(rep(1:3,4))
b<-factor(rep(1:4,3))
levels(strata(a))
levels(strata(a,b,shortlabel=TRUE))
data(ovarian)
coxph(Surv(futime, fustat) ~ age + strata(rx), data=ovarian)

Run the code above in your browser using DataLab