View source: R/modifyHelpers.R
add | R Documentation |
Create function that adds text elements to vector
add(..., .pos = "bottom")
... |
Elements to add. |
.pos |
Either \"top\" or \"bottom\". Decides if new text is prepended or appended to existing text. |
A function that adds the specified text to character vectors
myfun <- add("b","d")
myfun("a")
myfun2 <- add("b","d",.pos="top")
myfun2("a")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.