Skip to contents

Converts a character vector of fully qualified variable names into an ev_variables container.

Usage

make_ev_variables(vars)

Arguments

vars

Character vector of fully qualified variable names

Value

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

Examples

if (FALSE) { # \dontrun{

vars <- c("proj1.tab1.var1", "proj1.tab1.var2", "proj2.tab2.var1")
make_ev_variables(vars)

} # }