Description Usage Arguments Value References Examples
View source: R/CalculatePopChange.R
Calculate the change in population size between two times. When only one time is specified, the population size at that time is returned.
1 2 |
model.out |
output from one of the following functions or a |
variable |
string with the name of the the output variable for which the change are to be calculated (see the variable argument for |
t1 |
value specifying the first time. |
t2 |
value specifying the second time. |
ratio |
logical. When |
Value representing the ratio (if ratio
is TRUE
) or the difference (if ratio
is FALSE
) between population size at time t2 and t1. If only one time is specified, the value is the population size at that time.
Baquero, O. S., Marconcin, S., Rocha, A., & Garcia, R. D. C. M. (2018). Companion animal demography and population management in Pinhais, Brazil. Preventive Veterinary Medicine.
http://oswaldosantos.github.io/capm
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ## IASA model
## Parameters and intial conditions.
data(dogs)
dogs_iasa <- GetDataIASA(dogs,
destination.label = "Pinhais",
total.estimate = 50444)
# Solve for point estimates.
solve_iasa_pt <- SolveIASA(pars = dogs_iasa$pars,
init = dogs_iasa$init,
time = 0:15,
alpha.owned = TRUE,
method = 'rk4')
# Calculate the population change (ratio) between times 0 and 15.
CalculatePopChange(solve_iasa_pt, variable = 'N1', t2 = 15, t1 = 0)
# Calculate the population change (difference) between times 0 and 15.
CalculatePopChange(solve_iasa_pt, variable = 'N1', t2 = 15,
t1 = 0, ratio = FALSE)
# Calculate the population zises at time 15.
CalculatePopChange(solve_iasa_pt, variable = 'N1', t2 = 15)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.