taxa_tbl {taxadb} | R Documentation |
Return a reference to a given table in the taxadb database
Description
Return a reference to a given table in the taxadb database
Usage
taxa_tbl(
provider = getOption("taxadb_default_provider", "itis"),
schema = c("dwc", "common"),
version = latest_version(),
db = td_connect()
)
Arguments
provider |
from which provider should the hierarchy be returned?
Default is 'itis', which can also be configured using |
schema |
One of "dwc" (for Darwin Core data) or "common" (for the Common names table.) |
version |
Which version of the taxadb provider database should we use? defaults to latest. See tl_import for details. |
db |
a connection to the taxadb database. See details. |
Examples
## default schema is the dwc table
taxa_tbl()
## common names table
taxa_tbl(schema = "common")
[Package taxadb version 0.2.1 Index]