Learn R Programming

primer (version 1.2.0)

PopSim: Population Simulator

Description

Resampling stochastic simulator for a single density-independent population.

Usage

PopSim(Rs, N0, years = 50, sims = 10)

Arguments

Rs

vector of observed annual growth rates (N[t+1]/N[t]).

N0

initial population size.

years

number of years to simulate.

sims

number of simulated populations.

Value

Returns a matrix of population sizes for time = t (rows) for each replicated population (columns).

Details

Designed to simulate trajectories based on resampled observed N[t+1]/N[t].

References

Stevens, M.H.H. (2009) A Primer of Ecology with R. Use R! Series. Springer.

See Also

sparrows

Examples

Run this code
# NOT RUN {
lambdas <- runif(10, .5, 1.5)
out <- PopSim(Rs=lambdas, years=50, N0=50)
matplot(0:50, out, type='l')
summary(out[51,])

# }

Run the code above in your browser using DataLab