Creating logistic growth model

Hi,
I am trying to fit a logistic growth model fit to my data.
My data set is a two column series of years and number of birds.
Year. Number of birds
1900 800
1910 905
..... ....(An asymptote is eventually reached)

The data eventually reaches some carrying capacity and ends up become more stabilized in the base plot:

plot(Count~Year, data=Cormorants, type= "l")

I'm confused how I can fit a logistic growth model to the data to make an "S'" shaped curve.
Very similarly to how populations reach their carrying capacity.
I've tried creating a glm model with the code:
model<- glm(Count~Year, binomial)

but I get an error in eval (family$initialize) : y values must be 0<= y<=1

Am I going about this wrong?

Something like
nls(Count~b0 + b1*exp(b2*year)/exp(1+b2*year), start=list(b0=0,b1=1,b2=3))
although I'm sure that logistic formula isn't exactly what you want.

1 Like

Could you clarify what each of the b0,b1, and b2 are indicating?

Those are the parameters to be estimated.

Essentially, you specify a nonlinear functional form that can take the shape of an S-curve. nls() will estimate the parameters of that function.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.