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

Description Usage Arguments Value See Also Examples

Description

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

Usage

1
jump2step(jump, time = "time", strata = "strata")

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".

strata

integer or character value for the column index or name of the stratifying variable in the matrix jump. Defaults to "strata". If any character provided is not a column name, jump is presumed unstratified.

Value

A matrix of the same dimension as jump.

See Also

step2jump

Examples

1
2
3
4
5
fit <- coxdual(Surv(start, stop, status) ~ cluster(id)
               + strata(from, to) + z, data = dualrc, init.coxph = TRUE)
haz <- step2jump(fit$coxph$basehaz)
Haz <- jump2step(haz)
all(Haz == fit$coxph$basehaz)

aboruvka/coxinterval documentation built on May 10, 2019, 4:14 a.m.