escapedDeparse {asuR} | R Documentation |
creates a string out of character vector where the individual elemets are within escaped quotes
escapedDeparse(vec.i)
vec.i |
a vetor whose elements are character |
This function is useful if you want to give a vector with character arguments to the paste function and then parse the result. See e.g. inspect
a character string
~put references to the literature/web site here ~
my.vec <- c("a", "b") escapedDeparse(my.vec) ## returns ## [1] "c(\"a\",\"b\")"