Dear all,
I noticed the following under R 1.8.1 (when nls was still a separate
package) but the same problem occurs under R 1.9.0 (where most (all?)
of nls is now in the stats package):
> data(Puromycin)
> fm <- nls(rate~SSmicmen(conc,b0,b1), Puromycin, subset = state=="treated")
> coef(summary(f
I believe there's a typo in the R Language Definition 1.9.0 (2004-04-12)
draft. Around the middle of subsection 5.1 it says:
... a final search for foo.default would be made
This should probably be:
... a final search for mean.default would be made
Cheers,
Arni
__