How can I specify the maximum number of iterations in coxph whilst also specifying my model?? I can't find any on-line examples. Thanks
Dear Gareth, ?coxph.control (which we are told to check from ?coxph) contains an argument for maxiter. Best, R. On Tuesday 26 August 2003 13:51, Gareth Hughes wrote:> How can I specify the maximum number of iterations in coxph > whilst also specifying my model?? I can't find any on-line > examples. Thanks > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://www.stat.math.ethz.ch/mailman/listinfo/r-help-- Ram?n D?az-Uriarte Bioinformatics Unit Centro Nacional de Investigaciones Oncol?gicas (CNIO) (Spanish National Cancer Center) Melchor Fern?ndez Almagro, 3 28029 Madrid (Spain) Fax: +-34-91-224-6972 Phone: +-34-91-224-6900 http://bioinfo.cnio.es/~rdiaz
On Tue, 26 Aug 2003, Gareth Hughes wrote:> How can I specify the maximum number of iterations in coxph > whilst also specifying my model?? I can't find any on-line > examples. Thanks >coxph(Surv(time,death)~x+y*z, data=df, control=coxph.control(iter.max=42)) -thomas