A function to combine unquoted values into a vector. The
function will return a vector of quoted values.
v(...)
Arguments
... |
One or more unquoted values. |
Value
A vector of quoted values.
Examples
# Combine unquoted values
v(var1, var2, var3)
# [1] "var1" "var2" "var3"