--- included text -- I have done model selection between candidate Cox models, using AICc calculated with penalized log likelihoods. Then model averaging was done to obtain model averaged parameter estimates. Is there a way to plot survival curve from the averaged model, by estimating baseline hazard and baseline survival?
-- end inclusion --- You can fit a Cox model with fixed coefficients. Assume "fixbeta" are the coefficients from your model averaging, then do ffit <- coxph(Surv(time, status) ~ x1 + x2 + .... , data=mydata, init=fixbeta, iter=0) sfit <- survfit(fit) The standard errors in sfit are incorrect of course. One could bootstrap the entire model creation process to get accurate values. Terry Therneau ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.