Skip to content
Prev 333102 / 398506 Next

codenls

The expression has b[1] and b[2] while start has b[2] and b[3].

The expression needs a different form, for example:

#   fit<-nlrob(y ~ x1 / (1+ b[1]*x2^b[2]),data = xx, start =
#   list(b[2],b[3]))
   fit<-nlrob(y ~ x1 / (1+ b1*x2^b2),data = xx, start =
   list(b1=b[2],b2=b[3]))

This "works", though I have no idea if the results make sense.

JN
On 13-11-13 06:00 AM, r-help-request at r-project.org wrote: