Get variables names
get_ev_variables.Rd
Returns fully qualified variable names from an ev_variables
container.
Details
An ev_variables
container can be created using read_ev_variables
.
See also
read_ev_variables
to create an ev_variables
container.
Other getters:
get_ev_data_names()
,
get_ev_data()
,
get_ev_metadata()
,
get_ev_projects()
,
get_ev_request()
,
get_ev_tables()
,
get_ev_vars_df()
Examples
if (FALSE) { # \dontrun{
# read a variable data request file
vars <- read_ev_variables("path/to/variables/file")
# get the variable names from the request
get_ev_variables(vars)
} # }