escapedDeparse {asuR}R Documentation

escapedDeparse

Description

creates a string out of character vector where the individual elemets are within escaped quotes

Usage

escapedDeparse(vec.i)

Arguments

vec.i a vetor whose elements are character

Details

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

Value

a character string

Author(s)

thomas.fabbro@unibas.ch

References

~put references to the literature/web site here ~

See Also

inspect

Examples

my.vec <- c("a", "b")
escapedDeparse(my.vec)
## returns
## [1] "c(\"a\",\"b\")"

[Package asuR version 0.08-24 Index]