Re: [R] nls.control()

2008-09-04 Thread Prof Brian Ripley
On Wed, 3 Sep 2008, Ranney, Steven wrote: and I'm trying to fit a simple Von Bertalanffy growth curve with program: VonB=nls(TL~Linf*(1-exp(-k*(age-t0))), data=box5.4, start=list(Linf=1000, k=0.1, t0=0.1), trace=TRUE) ... Everything works as it should right up until the confint(VonB)

Re: [R] nls.control()

2008-09-03 Thread Dieter Menne
Ranney, Steven steven.ranney at montana.edu writes: and I'm trying to fit a simple Von Bertalanffy growth curve with program: VonB=nls(TL~Linf*(1-exp(-k*(age-t0))), data=box5.4, start=list(Linf=1000, k=0.1, t0=0.1), trace=TRUE) ... Everything works as it should right up until the

[R] nls.control()

2008-09-03 Thread Ranney, Steven
and I'm trying to fit a simple Von Bertalanffy growth curve with program: VonB=nls(TL~Linf*(1-exp(-k*(age-t0))), data=box5.4, start=list(Linf=1000, k=0.1, t0=0.1), trace=TRUE) ... Everything works as it should right up until the confint(VonB) statement. When I ask for the confidence

[R] nls.control()

2008-09-02 Thread Ranney, Steven
All - I have data: TL age 388 4 418 4 438 4 428 5 539 10 432 4 444 7 421 4 438 4 419 4 463 6 423 4 ... [truncated] and I'm trying to fit a simple Von Bertalanffy growth curve with program: #Creates a Von Bertalanffy growth model