[R] continue a loop after an error with confint

2008-10-30 Thread Benoit Boulinguiez
Hi all, I've got a list (Reg3Lst) with 1000 nls regression results in it. I'd like to get the confidence interval of the parameters obtained with the nonlinear regressions. Thus I've used this: for (i in 1:1000) { foo-list(foo,confint(Reg3Lst[[i]])) } For some regressions the

Re: [R] continue a loop after an error with confint

2008-10-30 Thread Gábor Csárdi
Yep, see ?try Gabor On Thu, Oct 30, 2008 at 4:10 PM, Benoit Boulinguiez [EMAIL PROTECTED] wrote: Hi all, I've got a list (Reg3Lst) with 1000 nls regression results in it. I'd like to get the confidence interval of the parameters obtained with the nonlinear regressions. Thus I've used this: