qc: Create vector of characters from unquoted strings (variable names)
Description
qc It is often needed to address variables in the data.frame in the such
manner: dfs[ , c("var1", "var2", "var3")]. qc ("quoted c") is a
shortcut for the such cases to reduce keystrokes. With qc you can write:
dfs[ , qc(var1, var2, var3)].
qe returns list of expression.
Usage
qc(...)
qe(...)
Value
Vector of characters or expressions
Arguments
...
unquoted names of variables in
qc or unquoted expressions in qe.