fes_describe_var | R Documentation |
fes_describe_var
is a wrapper for the $describe_var
method of lfcFES
objects. See fes
.
fes_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 FES functions:
fes_avail_tables()
,
fes_get_data()
,
fes()
if (interactive()) {
fesdb <- fes()
fes_describe_var(fesdb, "mushrooms_poduction")
fes_describe_var(fesdb, c("exported_water", "animals_presence"))
# fesdb is an R6 object, so the previous example is the same as:
fesdb$describe_var("mushrooms_poduction")
fesdb$describe_var(c("exported_water", "animals_presence"))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.