Description Usage Arguments Details Author(s) References Examples
Get Neotoma value tables.
1 |
table.name |
Call one of the available tables in the Neotoma Database. A full listing of tables can be found here: http://api.neotomadb.org/doc/resources/dbtables. By default it returns all objects in the table. |
A table of values corresponding to the parameter of interest.
Simon J. Goring simon.j.goring@gmail.com
Neotoma Project Website: http://www.neotomadb.org API Reference: http://api.neotomadb.org/doc/resources/contacts
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
taxon.table <- get_table('Taxa')
# Get the frequency of a random taxon in Neotoma.
tax_sample <- sample(nrow(taxon.table), 1)
cat("The taxon",
taxon.table$TaxonName[tax_sample],
"occurs in Neotoma",
length(get_dataset(taxonname = taxon.table$TaxonName[tax_sample])),
"times.")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.