concat | R Documentation |
The concat()
function is at default identical to paste(c(...), sep = "", collapse = "")
.
The collapse()
function is at default identical to paste(x, sep = "", collapse = "")
.
concat(..., sep = "")
collapse(x, sep = "")
... , x |
element(s) to be pasted together, can also be vectors |
sep |
separator character, will also be used for collapsing |
concat("a", "b", "c")
concat(c("a", "b"), "c")
collapse(c("a", "b"), "c")
concat(letters[1:5], "-")
collapse(letters[1:5], "-")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.