Displaying 1 result from an estimated 1 matches for "meansurv".
Did you mean:
leafsurv
2011 Apr 05
0
frailty
...ution = "gamma", method='aic'), data=datax)
Then I get survival (eg to 10 years) for the mean of the covariates:
survfit1 <- survfit(modx)
timesele<- 3652.25
tab <- as.data.frame(cbind(survfit1$time, survfit1$surv))
names(tab) <- c("time", "surv")
meansurv <- tab[tab$time==max(tab$time[tab$time<timesele]), ]$surv
?survfit.coxph? allows the entry of 'newdata' with the characteristics of
individuals that I want. This function doesn?t allow entering a value of
'center' (frailty term). However, when it performs the linear predictor...