nfi_describe_var | R Documentation |
nfi_describe_var
is a wrapper for the $describe_var
method of lfcNFI
objects. See nfi
.
nfi_describe_var(object, variables)
object |
|
variables |
character vector with the names of the variables to describe |
Description is printed in the console, nothing is returned
Other NFI functions:
nfi_avail_tables()
,
nfi_describe_table()
,
nfi_get_data()
,
nfi()
if (interactive()) {
nfidb <- nfi()
nfi_describe_var(nfidb, "density")
nfi_describe_var(nfidb, c("over_bark_volume", "basal_area"))
# nfidb is an R6 object, so the previous example is the same as:
nfidb$describe_var("density")
nfidb$describe_var(c("over_bark_volume", "basal_area"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.