set_taxonomicCoverage | R Documentation |
set_taxonomicCoverage
set_taxonomicCoverage(sci_names, expand = FALSE, db = "itis")
sci_names |
string (space separated) or list or data frame of scientific names for species covered. |
expand |
Set to TRUE to use '[taxadb]' to expand sci_names into full taxonomic classifications |
db |
The taxonomic database to query (when expand is set to |
Turn a data.frame or a list of scientific names into a taxonomicCoverage block sci_names can be a space-separated character string or a data frame with column names as rank name or a list of user-defined taxonomicClassification
a taxonomicCoverage object for EML
If "sci_names" is a data frame, column names of the data frame are rank names. For user-defined "sci_names", users must make sure that the order of rank names they specify is from high to low. Ex. "Kingdom","Phylum","Class","Order","Family","Genus","Species","Common" EML permits any rank names provided they go in descending order.
taxon_coverage <- set_taxonomicCoverage("Macrocystis pyrifera") sci_names <- data.frame( Kingdom = "Plantae", Phylum = "Phaeophyta", Class = "Phaeophyceae", Order = "Laminariales", Family = "Lessoniaceae", Genus = "Macrocystis", specificEpithet = "pyrifera" ) taxon_coverage <- set_taxonomicCoverage(sci_names) # Examples that may take > 5s ## use a list of lists for multiple species sci_names <- list(list( Kingdom = "Plantae", Phylum = "Phaeophyta", Class = "Phaeophyceae", Order = "Laminariales", Family = "Lessoniaceae", Genus = "Macrocystis", specificEpithet = "pyrifera" )) set_taxonomicCoverage(sci_names)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.