powered by
A function for the core-satellite metaapopulation dynamics, for use with ode in the deSolve package.
ode
deSolve
hanski(t, y, parms)
Argument for time
A scalar for the population variable
Vector or list of parameters
Returns a list of length one, for use with ode in the deSolve package.
vector of the state variable (a scalar for the proportion of sites occupied).
Hanski, I. (1982) Dynamics of regional distribution: the core and satellite species hypothesis. Oikos, 38, 210--221.
Stevens, M.H.H. (2009) A Primer of Ecology with R. Use R! Series. Springer.
gotelli, hanski,lande, MetaSim, clogistic
gotelli
hanski
lande
MetaSim
clogistic
# NOT RUN { prms <- c(ci<- 0.15, e=0.05) out <- ode(y=.2, times=1:100, func=hanski, parms=prms ) matplot(out[,1], out[,2], type='l', ylab="p", xlab="time") # }
Run the code above in your browser using DataLab