scrubber {qdap} | R Documentation |
Clean Imported Text
Description
Use to clean text variables when importing a new data set. Removes extra white spaces other textual anomalies that may cause errors.
Usage
scrubber(
text.var,
num2word = FALSE,
rm.quote = TRUE,
fix.comma = TRUE,
fix.space = TRUE,
...
)
Arguments
text.var |
The text variable. |
num2word |
logical If |
rm.quote |
logical If |
fix.comma |
logical If |
fix.space |
logical. If |
... |
Other arguments passed to |
Value
Returns a parsed character vector.
See Also
Examples
## Not run:
x <- c("I like 456 dogs\t , don't you?", 'The end"')
scrubber(x)
scrubber(x, TRUE)
## End(Not run)
[Package qdap version 2.4.6 Index]