This function processes results from a ReptileDB database search to extract subspecies information. It identifies species that have subspecies and returns a tibble with the species name, subspecies name, and author information.
Value
A tibble with three columns:
- species
The name of the species
- subspecies_name
The full name of the subspecies
- author
The author and year of the subspecies description
Examples
if (FALSE) { # \dontrun{
# These examples require the 'reptiledb.data' package to be installed.
subspecies_names <- c("Lachesis muta",
"Anilius scytale",
"Anolis bahorucoensis")
search_reptiledbr(subspecies_names, use_fuzzy = FALSE) |>
list_subspecies_reptiledbr()
} # }