salt_substitute {salty} | R Documentation |
Substitute certain characters in a vector
Description
Substitute certain characters in a vector
Usage
salt_substitute(x, substitutions, p = 0.2, n = 1)
Arguments
x |
A vector. This will always be coerced to character during salting. |
substitutions |
Values to be substituted in |
p |
A number between 0 and 1. Percent of values in |
n |
A positive integer. Number of times to add new values from
|
Value
A character vector the same length as x
Examples
x <- c("Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"Nunc finibus tortor a elit eleifend interdum.",
"Maecenas aliquam augue sit amet ultricies placerat.")
salt_substitute(x, shaker$digits, p = 0.5, n = 5)
[Package salty version 0.1.0 Index]