vcat | R Documentation |
Concatenate vector elements or anything using
paste(*, collapse = .)
.
These are simple short abbreviations I have been using in my own codes
in many places.
vcat(vec, sep = " ")
ccat(...)
vec , ... |
any vector and other arguments to be pasted to together. |
sep |
the separator to use, see the Details section. |
The functions are really just defined as
vcat := function(vec, sep = " ") paste(vec, collapse = sep)
ccat := function(...) paste(..., collapse = "", sep = "")
a character string (of length 1) with the concatenated arguments.
Martin Maechler, early 1990's.
paste
, as.character
,
format
. cat()
is really for printing.
ch <- "is"
ccat("This ", ch, " it: ", 100, "%")
vv <- c(1,pi, 20.4)
vcat(vv)
vcat(vv, sep = ", ")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.