Re: [R] continue for loop in case of erros

2007-10-09 Thread Gabor Grothendieck
It might be an idea to add Katherine Mullen's answer earlier in this thread to the FAQ too. https://stat.ethz.ch/pipermail/r-help/2007-October/142807.html On 10/9/07, Thomas Lumley <[EMAIL PROTECTED]> wrote: > > It's a FAQ: 7.32. > >-thomas > > On Tue, 9 Oct 2007, Irene Mantzouni wrote

Re: [R] continue for loop in case of erros

2007-10-09 Thread Thomas Lumley
It's a FAQ: 7.32. -thomas On Tue, 9 Oct 2007, Irene Mantzouni wrote: > Dear all, > > I have a for loop which includes nls model estimation. > The loop breaks after the first non-convergence error. > How can I make the loop continue and try to estimate all models? > I suppose it should b

Re: [R] continue for loop in case of erros

2007-10-09 Thread Katharine Mullen
It is also possible to pass the control argument of nls "warnOnly=TRUE", which indicates that an object should be returned if stopping criteria are met (e.g., reaching a max. number of iterations). See help(nls.control) for more info. On Tue, 9 Oct 2007, Irene Mantzouni wrote: > Thank you all! >

Re: [R] continue for loop in case of erros

2007-10-09 Thread Irene Mantzouni
Thank you all! Yes, try works! __ 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 cod

Re: [R] continue for loop in case of erros

2007-10-09 Thread Henrique Dallazuanna
Hi, See ?try On 09/10/2007, Irene Mantzouni <[EMAIL PROTECTED]> wrote: > > Dear all, > > I have a for loop which includes nls model estimation. > The loop breaks after the first non-convergence error. > How can I make the loop continue and try to estimate all models? > I suppose it should be sth

Re: [R] continue for loop in case of erros

2007-10-09 Thread Benilton Carvalho
take a look at the try() command. b On Oct 9, 2007, at 11:41 AM, Irene Mantzouni wrote: > Dear all, > > I have a for loop which includes nls model estimation. > The loop breaks after the first non-convergence error. > How can I make the loop continue and try to estimate all models? > I suppose it

[R] continue for loop in case of erros

2007-10-09 Thread Irene Mantzouni
Dear all, I have a for loop which includes nls model estimation. The loop breaks after the first non-convergence error. How can I make the loop continue and try to estimate all models? I suppose it should be sth like: if(...) { next } but I have no idea how to setup the arguements... Thank yo