f_paste | R Documentation |
Concatenate items in vector.
f_paste(
v.string,
c.collapse = ",",
c.and = "and",
b.capitalize = FALSE,
b.quotation = FALSE,
b.sort = TRUE,
b.unique = FALSE,
n.top = NULL
)
v.string |
Vector of items to concatenate. |
c.collapse |
(default: ","). |
c.and |
(default: "and"). |
b.capitalize |
(default: FALSE). |
b.quotation |
(default: FALSE). |
b.sort |
(default: TRUE). |
b.unique |
(default: FALSE). |
n.top |
(default: NULL). |
-
Concatenated string.
Pieter Overdevest
c.string <- f_paste(
v.string = c("A", "B", "C"),
c.collapse = ",",
c.and = "and",
b.capitalize = FALSE,
b.quotation = FALSE,
b.sort = TRUE,
b.unique = FALSE,
n.top = NULL
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.