Description Usage Arguments Details Source See Also Examples
Infix versions of paste0
and paste
.
1 | a %.+.% b
|
a, b |
values to be pasted with either |
`%++%`
is an infix version of paste0
.
`%.+.%`
is an infix version of paste
.
Inspired by "Infix functions" in Advanced R by Hadley Wickham.
1 2 3 4 5 | "a" %++% "b"
#> [1] "ab"
"a" %.+.% "b"
#> [1] "a b"
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.