Skip to contents

Returns the ev_variables container used to create an ev_data container.

Usage

get_ev_request(ev_data)

Arguments

ev_data

An ev_data container

Value

An ev_variables container

Details

Every ev_data container stores a copy of the ev_variables container used to create it, and this function is used to access it directly.

See also

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 variable request - a copy of the ev_variables container (vars) used to build dat
get_ev_request(dat)

} # }