%+% | R Documentation |
String concatenation
lhs %+% rhs
lhs |
a string or vector of strings. |
rhs |
a string or vector of strings. |
The expression lhs %+% rhs
is equivalent to
paste(lhs, rhs, sep = " ", collapse = NULL, recycle0 = FALSE)
.
See paste for more details.
a string or vector of strings.
Valerio Gherardi
Brief synthax for string concatenation.
paste
"i love" %+% c("cats", "jazz", "you")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.