powered by
ode
deSolve
clogistic(times, y, parms)
Stevens. M.H.H. 2009. A Primer of Ecology with R. Use R! Series. Springer.
dlogistic
levins
lvcomp2
library(deSolve) p <- c(1,.01) time <- 1:10 initialN <- 10 out <- ode(y=initialN, times=time, func=clogistic, parms=p) plot(time, out[,-1], type='l')
Run the code above in your browser using DataLab