View source: R/abundance_wrappers.R
getDomainAbundance | R Documentation |
Estimates abundance (total number of individuals) for each sampling domain (year/region)
getDomainAbundance(x, species, length_bins = NULL, merge_protected = TRUE, ...)
x |
A list containing three data.frames:
|
species |
A character vector containing scientific names, common names, or species codes for the desired species, or a combination thereof |
length_bins |
Numeric vector, data.frame, or keyword.
|
merge_protected |
A boolean indicating whether protected and unprotected areas should be merged (TRUE, the default), or should be calculated seperately (FALSE) |
... |
Optional filters to apply to the data:
|
This estimate of abundance does not take into account detection probability. It is simply the count per secondary sampling unit extrapolated for the entire sampling domain. In most circumstances this will yield an underestimate of abundance.
A data.frame with:
The year
A code for the region: DRY TORT - Dry Tortugas, SEFCRI - Southeast Peninsular Florida, FLA KEYS - Florida Keys
The species code. The first three letters of the genus name and first four of the species name. If group is passed as an argument, SPECIES_CD will be changed to GROUP
Estimated abundance per sampling domain
Variance in estimated abundance
Number of primary sampling units sampled
Number of secondary sampling units sampled
Number of possible primary sample units
Number of possible secondary sampling units
The length class or bin. Only present if length_bins is not NULL. The notation, [lower, upper), is inclusive of the lower bound, but exclusive of the upper bound
The protected status. Only present if merge_protected is FALSE
getRvcData
getStratumAbundance
## Get RVC data from the florida keys in 2000 fk2000 = getRvcData(years = 2000, regions = "FLA KEYS") ## Calculate yellowtail abundance getDomainAbundance(fk2000, species = "Yellowtail Snapper") ## Calculate yellowtail abundance in/outside of protected areas getDomainAbundance(fk2000, species = "Ocy chry", merge_protected = FALSE) ## Calculate yellowtail abundance above/below 25cm getDomainAbundance(fk2000, species = "Ocyurus chrysurus", length_bins = 25)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.