bag_o_words | R Documentation |
bag_o_words
- Reduces a text column to a bag of words.
unbag
- Wrapper for paste(collapse=" ")
to glue words back into
strings.
breaker
- Reduces a text column to a bag of words and qdap recognized
end marks.
word_split
- Reduces a text column to a list of vectors of bag of
words and qdap recognized end marks (i.e., ".", "!", "?", "*", "-"
).
bag_o_words(text.var, apostrophe.remove = FALSE, ...)
unbag(text.var, na.rm = TRUE)
breaker(text.var)
word_split(text.var)
text.var |
The text variable. |
apostrophe.remove |
logical. If |
na.rm |
logical. If |
... |
Additional arguments passed to strip. |
Returns a vector of stripped words.
unbag
- Returns a string.
breaker
- Returns a vector of striped words and qdap
recognized endmarks (i.e., ".", "!", "?", "*", "-"
).
## Not run:
bag_o_words("I'm going home!")
bag_o_words("I'm going home!", apostrophe.remove = TRUE)
unbag(bag_o_words("I'm going home!"))
bag_o_words(DATA$state)
by(DATA$state, DATA$person, bag_o_words)
lapply(DATA$state, bag_o_words)
breaker(DATA$state)
by(DATA$state, DATA$person, breaker)
lapply(DATA$state, breaker)
unbag(breaker(DATA$state))
word_split(c(NA, DATA$state))
unbag(word_split(c(NA, DATA$state)))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.