get_H0 {fic} | R Documentation |
Interpolate cumulative hazard function from a fitted Cox model
Description
Returns the baseline cumulative hazard, at the requested times,
from a Cox model fitted by coxph
. Linear
interpolation is used, assuming the hazard is piecewise constant,
thus the cumulative hazard is piecewise linear.
Usage
get_H0(H0, t)
Arguments
H0 |
output from |
t |
vector of times for which cumulative hazard estimates are required. |
Details
This does not extrapolate. If t
is outside the observed event times, then NA
will be returned.
Value
Fitted cumulative hazard at t
.
Examples
library(survival)
wide <- coxph(Surv(years, death==1) ~ sex + thick_centred +
infilt + epith + ulcer + depth + age, data=melanoma)
basehaz(wide)
get_H0(basehaz(wide), c(0,1,5,10,100))
[Package fic version 1.0.0 Index]