This function is used to select the variables returned in the final dataset.
Functions
sc_select_()
: Standard evaluation version ofsc_select
(vars
must be string or vector of strings when using this version)
Examples
if (FALSE) { # \dontrun{
sc_select(UNITID)
sc_select(UNITID, INSTNM)
sc_select(unitid, instnm)
} # }
if (FALSE) { # \dontrun{
sc_select_("UNITID")
sc_select_(c("UNITID", "INSTNM"))
sc_select_(c("unitid", "instnm"))
## stored in object
vars_to_pull <- c("unitid","instnm")
sc_select(vars_to_pull)
} # }