Learn R Programming

coxinterval (version 1.2)

jump2step: Accumulate increments in values from a step function of time

Description

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

Usage

jump2step(jump, time = "time", stratum = NULL)

Arguments

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

Value

A matrix of the same dimension as jump.

See Also

step2jump

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