Learn R Programming

PVAClone (version 0.1-1)

growth-models: Growth models

Description

Population growth model to be used in model fitting via pva.

Usage

gompertz(obs.error = "none", fixed)
ricker(obs.error = "none", fixed)
thetalogistic(obs.error = "none", fixed)
thetalogistic_D(obs.error = "none", fixed)
bevertonholt(obs.error = "none", fixed)

Arguments

obs.error
Character, describing the observation error. Can be "none", "poisson", or "normal".
fixed
Named numeric vector with fixed parameter names and values.

Value

Details

These functions can be called in pva to fit the following growth models to a given population time series assuming both with and without observation error. When assuming the presence of observation error, either the Normal or the Poisson observation error model must be assumed within the state-space model formulation (Nadeem and Lele, 2012). The growth models are defined as follows. Gompertz (gompertz): $$x_{t} = a + x_{t-1} + b x_{t-1} + \epsilon_{t}$$ where $x_{t}$ is log abundance at time $t$ and $\epsilon_{t} \sim Normal(0, \sigma^2)$. Ricker (ricker): $$x_{t} = x_{t-1} + a + b e^{x_{t-1}} + \epsilon_{t}$$ where $x_{t}$ is log abundance at time $t$ and $\epsilon_{t} \sim Normal(0, \sigma^2$. Theta-Logistic (thetalogistic): $$x_{t} = x_{t-1} + r[1-(e^{x_{t-1}}/K)^theta] + \epsilon_{t}$$ where $x_{t}$ is log abundance at time $t$ and $\epsilon_{t} \sim Normal(0, \sigma^2$. Theta-Logistic with Demographic Variability (thetalogistic_D): $$x_{t} = x_{t-1} + r[1-(e^{x_{t-1}}/K)^theta] + \epsilon_{t}$$ where $x_{t}$ is log abundance at time $t$ and $\epsilon_{t} \sim Normal(0, \sigma^2 + sigma.d^2$, where $sigma.d^2$ is the demographic variability. If $sigma.d^2$ is missing or fixed at zero, Theta-Logistic model is fitted instead. Generilzed Beverton-Holt (bevertonholt): $$x_{t} = x_{t-1} + r- log[1+(e^{x_{t-1}}/K)^theta] + \epsilon_{t}$$ where $x_{t}$ is log abundance at time $t$ and $\epsilon_{t} \sim Normal(0, \sigma^2$. Observation error models are described in the help page of pva. The argument fixed can be used to fit the model assuming a priori values of a subset of the parameters. For instance, fixing theta equal to one reduces Theta-Logistic and Gnerelized Beverton-Holt models to Logistic and Beverton-Holt models respectively. The number of parameters that should be fixed at most is $p-1$, where $p$ is the dimension of the full model. See examples below and in pva and model.select.

References

Nadeem, K., Lele S. R., 2012. Likelihood based population viability analysis in the presence of observation error. Oikos. doi: 10.1111/j.1600-0706.2011.20010.x

See Also

pvamodel-class, pva

Examples

Run this code
gompertz()
gompertz("poisson")
ricker("normal")
ricker("normal", fixed=c(a=5, sigma=0.5))
thetalogistic("none", fixed=c(theta=1))
bevertonholt("normal", fixed=c(theta=1))

Run the code above in your browser using DataLab