Description Usage Arguments Details Author(s) See Also Examples
A package to study population dynamic.
The beepodyna
function creates a R
object of the class beepodyna
.
1 2 3 | beepodyna(label, community,
interactions = interactions(length(community)),
functions = exponential_growth, verbose = TRUE)
|
label |
is the label of the |
community |
is the community object of class |
interactions |
is the interaction matrix of the class |
functions |
is a function or a list of functions to apply to each population in the same order as it is in the community. If the length of the list is not the same as the community, the functions are repeated so the length of the list is the same as the number of populations. |
verbose |
Default is |
The beepodyna
object is a list containing a community, the corresponding interaction matrix
and a list of the functions to apply to each population, in the order they appear in the community object.
Nicolas BARTALUCCI <bartalucci.nico@gmail.com>
community
and interactions
to create the object in parameters.
1 2 3 4 5 6 7 8 9 10 | hare = population("hirsuta",30,2,80)
lynx = population("daonensis",4,1.2,60)
hudson = community("hudson",hare,lynx)
beepodyna(label="model_1",
community=hudson,
interactions=interactions(2),
exponential_growth,
verbose = FALSE
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.