Estimation of censoring probabilities
This function is used internally by the function pec
to obtain
inverse of the probability of censoring weights.
ipcw( formula, data, method, args, times, subjectTimes, subjectTimesLag = 1, what )
formula |
A survival formula like, |
data |
The data used for fitting the censoring model |
method |
Censoring model used for estimation of the (conditional) censoring distribution. |
args |
A list of arguments which is passed to method |
times |
For |
subjectTimes |
For |
subjectTimesLag |
If equal to |
what |
Decide about what to do: If equal to
|
Inverse of the probability of censoring weights (IPCW) usually refer to the probabilities of not being censored at certain time points. These probabilities are also the values of the conditional survival function of the censoring time given covariates. The function ipcw estimates the conditional survival function of the censoring times and derives the weights.
IMPORTANT: the data set should be ordered, order(time,-status)
in
order to get the values IPCW.subjectTimes
in the right order for some
choices of method
.
times |
The times at which weights are estimated |
IPCW.times |
Estimated weights at |
IPCW.subjectTimes |
Estimated weights at individual time values
|
fit |
The fitted censoring model |
method |
The method for modelling the censoring distribution |
call |
The call |
Thomas A. Gerds tag@biostat.ku.dk
library(prodlim) library(rms) dat=SimSurv(30) dat <- dat[order(dat$time),] # using the marginal Kaplan-Meier for the censoring times WKM=ipcw(Hist(time,status)~X2, data=dat, method="marginal", times=sort(unique(dat$time)), subjectTimes=dat$time) plot(WKM$fit) WKM$fit # using the Cox model for the censoring times given X2 library(survival) WCox=ipcw(Hist(time=time,event=status)~X2, data=dat, method="cox", times=sort(unique(dat$time)), subjectTimes=dat$time) WCox$fit plot(WKM$fit) lines(sort(unique(dat$time)), 1-WCox$IPCW.times[1,], type="l", col=2, lty=3, lwd=3) lines(sort(unique(dat$time)), 1-WCox$IPCW.times[5,], type="l", col=3, lty=3, lwd=3) # using the stratified Kaplan-Meier # for the censoring times given X2 WKM2=ipcw(Hist(time,status)~X2, data=dat, method="nonpar", times=sort(unique(dat$time)), subjectTimes=dat$time) plot(WKM2$fit,add=FALSE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.