| p | R Documentation |
A wrapper on base::paste().
p(..., sep = " ", collapse = NULL, recycle0 = FALSE)
p0(..., collapse = NULL, recycle0 = FALSE)
... |
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
|
recycle0 |
|
A character vector.
p0(): A wrapper on base::paste0()
p("a", "b")
p(c("a", "b"), collapse = " ")
p("a", character(0))
p("a", character(0), recycle0 = TRUE)
p0("a", "b")
p0(c("a", "b"), collapse = "")
p0("a", character(0))
p0("a", character(0), recycle0 = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.