Displaying 1 result from an estimated 1 matches for "acancellata".
2008 Oct 07
0
Algorithm = "port" convergence codes
...r robust.
The R help file mentions the code is "0" for converence. Should I be
concerned here that nls() is returning a local optimum here, or is this
quite normal?
Thanks in advance!
Rob
PS Please try to ignore the fact a distribution is being fitted to too few
data points!
##Code
Acancellata.caughtintraps = c(6,2,1,2,0,0,0,0,0,0,0)
Acancellata.released = 1250
distances = c(2,3,4,5,7.5,10,12.5,15,17.5,20,25)
totalseedscaught = sum(Acancellata.caughtintraps)
Pcatch = totalseedscaught/Acancellata.released
## Calculate cumulative seed numbers reaching each distance
cumsumcaught <-...