Make ev_variables container
make_ev_variables.RdConverts a character vector of fully qualified variable names into an ev_variables container.
Details
This is called by data request functions such as read_ev_variables and ev_simple_fetch and you would not normally call it directly. However, there may be circumstances in which all you have is a list of variable names and you wish to convert these into an ev_variables container.
See also
Other data request functions:
ev_simple_fetch(),
fetch_ev_data(),
fetch_ev_meta_tabs(),
fetch_ev_meta_vars(),
read_ev_variables(),
write_ev_data()
Examples
if (FALSE) { # \dontrun{
vars <- c("proj1.tab1.var1", "proj1.tab1.var2", "proj2.tab2.var1")
make_ev_variables(vars)
} # }