Skip to content
Prev 131045 / 398506 Next

fitting "power model" in nls()

Is that really the model we want?  When we have problems sometimes
its just a sign that the model is not very good in the first place.

plot(richness ~ area)

shows most of the points crowded the left and just a few points out to
the right.  This
does not seem like a very good pattern for model fitting.

plot(richness ~ log(area))
plot(log(richness) ~ log(area))

both look nicer.
On Dec 2, 2007 2:08 PM, Milton Cezar Ribeiro <milton_ruser at yahoo.com.br> wrote: