Description Usage Arguments Value Examples
View source: R/add_comma_space.R
Adds a space after a comma as strip
and many other functions may consider a
comma separated string as one word (i.e., "one,two,three"
becomes
"onetwothree"
rather than "one two three"
).
1 |
x |
The text variable. |
Returns a vector of strings with commas that have a space after them.
1 2 3 4 5 | ## Not run:
x <- c("the, dog,went", "I,like,it", "where are you", NA, "why", ",", ",f")
add_comma_space(x)
## End(Not run)
|
[1] "the, dog, went" "I, like, it" "where are you" NA
[5] "why" "," ", f"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.