Learn R Programming

taxize (version 0.5.2)

ubio_id: Search uBio by namebank ID.

Description

Search uBio by namebank ID.

Usage

ubio_id(namebankID = NULL, keyCode = NULL, callopts = list())

Arguments

namebankID
(character) uBio namebank ID
keyCode
Your uBio API key; loads from .Rprofile. If you don't have one, obtain one at http://www.ubio.org/index.php?pagename=form.
callopts
Parameters passed on to httr::GET call.

Value

  • A list of four data.frame's, one for the name itself, one for synonyms, one for vernacular names, and one for citations.

Examples

Run this code
ubio_id(namebankID = 2483153)
ubio_id(namebankID = 105509)
ubio_id(namebankID = 2843601)
ubio_id(namebankID = 2478181)

# Pass in curl options
library("httr")
ubio_id(namebankID = 2478181, callopts=verbose())
ubio_id(namebankID = 2478181, callopts=timeout(3))

Run the code above in your browser using DataLab