Description Usage Arguments Value Examples
View source: R/replace_white.R
Pre-process data to replace one or more white space character with a single space.
1 | replace_white(x, ...)
|
x |
The character vector. |
... |
ignored. |
Returns a vector of character strings with escaped characters removed.
1 2 3 4 | x <- "I go \r
to the \tnext line"
x
replace_white(x)
|
[1] "I go \r\n to the \tnext line"
[1] "I go to the next line"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.