Get table/data frame names
get_ev_data_names.Rd
Returns the names of the data frames in an ev_data
container.
Details
The returned values can be used in a call to get_ev_data
.
An ev_data
container can be created using fetch_ev_data
.
See also
fetch_ev_data
to create an ev_data
container.
Other getters:
get_ev_data()
,
get_ev_metadata()
,
get_ev_projects()
,
get_ev_request()
,
get_ev_tables()
,
get_ev_variables()
,
get_ev_vars_df()
Examples
if (FALSE) { # \dontrun{
con <- ev_connect()
# read a variable data request file
vars <- read_ev_variables("path/to/variables/file")
# fetch the data from EpiVault
dat <- fetch_ev_data(con, vars)
# get the data frame names
get_ev_data_names(dat)
} # }