Skip to contents

Returns table names from an ev_variables container.

Usage

get_ev_tables(ev_vars)

Arguments

ev_vars

An ev_variables container

Value

A character vector of table names

Details

An ev_variables container can be created using read_ev_variables.

See also

Examples

if (FALSE) { # \dontrun{

# read a variable data request file
vars <- read_ev_variables("path/to/variables/file")

# get the table names from the request
get_ev_tables(vars)

} # }