Learn R Programming

coxinterval (version 1.2)

step2jump: Increments from a step function of time

Description

A utility function for coxdual that returns increments from values of a step function over time.

Usage

step2jump(step, time = "time", stratum = NULL)

Arguments

step
a matrix whose columns give the (possibly multivariate) step function values, corresponding time points and strata.
time
an integer or character value indicating the column index or name of the time variable in the matrix step. Defaults to "time".
stratum
integer or character value for the column index or name of the stratifying variable in the matrix step. If stratum is NULL (default), step is presumed unstratified.

Value

step.

See Also

jump2step

Examples

Run this code
fit <- coxdual(Surv(start, stop, status) ~ cluster(id)
               + trans(from, to) + z, data = dualrc, init.coxph = TRUE)
haz <- step2jump(fit$coxph$basehaz, stratum = 3)
Haz <- jump2step(haz, stratum = 3)
all(Haz == fit$coxph$basehaz)

Run the code above in your browser using DataLab