| gnr_datasources {taxize} | R Documentation |
Retrieve data sources used in Global Names Index, see http://gni.globalnames.org/ for information.
gnr_datasources(todf = TRUE)
todf |
logical; Should a data.frame be returned? |
json or a data.frame
Scott Chamberlain myrmecocystus@gmail.com
## Not run:
# all data sources
gnr_datasources()
# give me the id for EOL
out <- gnr_datasources()
out[out$title == "EOL", "id"]
# Fuzzy search for sources with the word zoo
out <- gnr_datasources()
out[agrep("zoo", out$title, ignore.case = TRUE), ]
# Output as a list
gnr_datasources(FALSE)
## End(Not run)