p | R Documentation |
A wrapper on base::paste()
.
p(..., sep = " ", collapse = NULL)
p0(..., collapse = NULL)
... |
one or more R objects, to be converted to character vectors. |
sep |
a character string to separate the terms. Not
|
collapse |
an optional character string to separate the results. Not
|
A character vector.
p0()
: A wrapper on base::paste0()
p("a", "b")
p(c("a", "b"), collapse = " ")
p0("a", "b")
p0(c("a", "b"), collapse = "")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.