as_string_c {regressoR} | R Documentation |
creates a string representative of a vector
as_string_c(vect, quote = TRUE)
vect |
a vector with values |
quote |
a logical value. If TRUE, the values on the vector will be surrounded by quotes. |
as_string_c(c("A", "B", "C"))
as_string_c(c(5, 6, 7))
as_string_c(c(5, 6, 7), quote = FALSE)
as_string_c(iris$Species)