Skip to contents

Describes the metadata variables contained in the popler database, and shows their content.

Usage

pplr_dictionary(..., full_tbl = FALSE)

Arguments

...

A sequence of (unquoted) variables specifying one or more variables of popler's main table for which dictionary information is needed

full_tbl

logical; If TRUE, the function returns a table describing the variables of the full main table. If FALSE, the function returns a table describing the standard variables. Default is FALSE.

Examples

if (FALSE) {
# Column names
column_names <- pplr_dictionary(full_tbl = FALSE)

# Dictionary information
dictionary_lter <- pplr_dictionary(lterid, full_tbl = FALSE)

# multiple columns
dictionary_lter_lat <- pplr_dictionary(lterid,lat_lter, full_tbl = FALSE)
}