View source: R/get_species_info.R
get_species_info | R Documentation |
Get Species Information
get_species_info(species, unident = FALSE, verbose = TRUE)
species |
A vector of species names. The words can be separated using spaces or underscores. Full names are not required but they will increase the consistency of the results should partial matches return multiple matches. |
unident |
A logical entry with the default value of |
verbose |
A logical that specifies if you want to print messages and
warnings to the console. The default is |
Get the scientific name, common name, and strata group for a vector of species.
A data frame with the scientific name in the latin column and in the scientific_name column that has spaces replaced with underscores; common name in the common column and in the common_name column that has spaces replaced with underscores; species values used as input in the input column; and strata used to assess its status in the strata column.
Kelli Faye Johnson
See
PullSpp.fn
for information on common and scientific names;
and GetStrata.fn
for the different stratifications.
get_species_info(c("sablefish", "petrale"))
# Expect a warning because vermilion doesn't have an strata assigned to it
testthat::expect_message(
get_species_info(c("vermilion"))
)
# Dusky returns multiple entries
testthat::expect_message(
get_species_info(c("dusky"))
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.