--begin inclusion --
I have a matched-case control dataset that I'm using conditional
logistic regression (clogit in survival) to analyze.  I'm trying to
conduct k-folds cross validation on my top models but all of the
packages I can find (CVbinary in DAAG, KVX) won't work with clogit
models.  Is there any easy way to do this in R?
-end inclusion --

 The clogit funciton is simply a wrapper for coxph.  
        clogit(case ~ ...  
turns into
        coxph(Surv(dummy, case) ~ ...
where "dummy" is a vector of ones.

Do the packages support coxph models?

Terry T

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

Reply via email to