fes_describe_table: Print info about the tables present in the FES db

View source: R/lfcFES.R

fes_describe_tableR Documentation

Print info about the tables present in the FES db

Description

fes_describe_table is a wrapper for the $describe_table method of lfcFES objects. See fes.

Usage

fes_describe_table(object, tables)

Arguments

object

lfcFES object, as created by fes

tables

character vector with the names of the tables to describe

Value

Description is printed in the console, nothing is returned

Examples

if (interactive()) {
  fesdb <- fes()
  fes_describe_table(fesdb, "static")
  fes_describe_table(fesdb, c("static", "plot_nfi_2_results"))

  # fesdb is an R6 object, so the previous example is the same as:
  fesdb$describe_table("static")
  fesdb$describe_table(c("static", "plot_nfi_2_results"))
}


MalditoBarbudo/lfcdata documentation built on May 2, 2023, 10:30 p.m.