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