Get project names
get_ev_projects.Rd
Returns project 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_request()
,
get_ev_tables()
,
get_ev_variables()
,
get_ev_vars_df()
Examples
if (FALSE) { # \dontrun{
# read a variable data request file
vars <- read_ev_variables("path/to/variables/file")
# get the project names from the request
get_ev_projects(vars)
} # }