View source: R/lfcAllometries.R
allometries_get_data | R Documentation |
allometries_get_data
is a wrapper for the $get_data
method of
lfcAllometries
objects. See also allometries
.
allometries_get_data(object, table_name = "allometries")
object |
|
table_name |
character vector of lenght 1 indicating the requested table name.
Only value available at the moment is |
Connection to database can be slow. Tables retrieved from the db are stored
in a temporary cache inside the lfcAllometries object created by
allometries
, making subsequent calls to the same table are faster.
A tbl object
Other Allometries functions:
allometries_calculate()
,
allometries_description()
,
allometries()
if (interactive()) {
allomdb <- allometries()
# tibble
allometries_get_data(allomdb, 'allometries')
# we can use pipes
allomdb |>
allometries_get_data('allometries')
# allomdb is an R6 object, so the previous examples are the same as:
allomdb$get_data('allometries')
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.