qw Takes an unquoted vector and adds quotes to it like the qw function in perl.

qw(...)

Arguments

...

Any unquoted strings

Value

A vector

Details

This is a helper function for data processing. Honestly, I use qw all the time in other languages, and wanted a version for R.

Author

Jarrett Byrnes.

Examples

c("a", "b")
#> [1] "a" "b"

qw(a, b)
#> [1] "a" "b"



# qw - a helper function that we
# will use later to deal with strings
# analagous to qw in PERL