View source: R/species_define.R
species_define | R Documentation |
Creates a list with taxonomic/identifying information and parameters for mean and standard deviation of body mass.
species_define(
AOU = NA_integer_,
scientific_name = NA_character_,
mean_size = NA_real_,
sd_size = NA_real_,
sim_species_id = 1
)
AOU |
the numeric AOU code used for this species in the Breeding Bird Survey |
scientific_name |
the species' scientific name, as "Genus species" |
mean_size |
mean body size |
sd_size |
sd of body size |
sim_species_id |
identifier; if using taxonomic info, defaults to AOU. If not, defaults to 1. Supplying other values can be useful for simulation models. |
The identifying information used depends on which parameters are provided, with the following order of preference: AOU > scientific name > user provided mean and sd > user provided mean and estimated sd.
list with species parameter information
species_define(AOU = 2881)
species_define(scientific_name = "Perdix perdix")
species_define(mean_size = 400, sd_size = 30)
species_define(mean_size = 400)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.