pst | R Documentation |
Concatenate strings without any separator characters.
pst(...)
... |
one or more R objects, to be converted to character vectors. |
This function simply calls paste0
with the collapse
option set to ""
.
A character vector of the concatenated values without any separator characters.
micompr:::pst("a", "b", "c", c("a", "b", "c"))
# [1] "abcaabcbabcc"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.