Functions that provide (re)SPECIATE source information. rsp_info generates a brief version report for the currently installed (re)SPECIATE data sets. rsp_profile_info searches the currently installed (re)SPECIATE data sets for profile records. rsp_species_info searches the currently installed (re)SPECIATE data sets for species records.

rsp_info()

rsp_profile_info(..., by = "keywords", partial = TRUE)

rsp_find_profile(...)

rsp_species_info(..., by = "species_name", partial = TRUE)

rsp_find_species(...)

Arguments

...

character(s), any search term(s) to use when searching the local (re)SPECIATE archive for relevant records using rsp_profile_info or rsp_species_info.

by

character, the section of the archive to search, by default 'keywords' for rsp_profile_info and 'species_names' for sp_species_info.

partial

logical, if TRUE (default) rsp_profile_info or rsp_profile_info use partial matching.

Value

rsp_info provides a brief version information report on the currently installed (re)SPECIATE archive.

rsp_profile_info returns a data.frame of profile information, as a respeciate object. rsp_species_info returns a data.frame of species information as a respeciate object.

Examples

if (FALSE) {
profile <- "Ethanol"
pr <- rsp_find_profile(profile)
pr

species <- "Ethanol"
sp <- rsp_find_species(species)
sp}