Dear R-user, May I seek your suggestion on an issue. I'm fitting non-linear mixed effects model as a part of my large R program. But sometimes I get error messages from it and the code stops working. In such cases, I want to skip the iterations and want to move to the next iteration ignoring all the subsequent computations.
The following is only that part of the code which fits the mixed effects model. I tried with "tryCatch" as shown below, but it's not serving my purpose. I guess something is wrong in my approach. ########################################################### grouped.data<-groupedData(formula = conc ~ t | subject, data = data.d) model.d<-nlme(conc~f2(dose,Theta1,Theta2,Theta3,t), fixed=Theta1+Theta2+Theta3~1, data=grouped.data, random=Theta1+Theta2+Theta3~1, start=list(fixed=ini.pkpara)) summ<-summary(model.d) # summary of the model tryCatch(summ, error = function() next) ########################################################### Any suggestion will be more than great. Thank you very much. Regards, Jamil [[alternative HTML version deleted]] ______________________________________________ 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.