Description Usage Arguments See Also Examples
View source: R/unnest_tweets.R
This function is a wrapper around unnest_tokens( token = "tweets" ).
| 1 2 3 4 5 6 7 8 9 10 11 12 | 
| tbl | A data frame | 
| output | Output column to be created as string or symbol. | 
| input | Input column that gets split as string or symbol. The output/input arguments are passed by expression and support quasiquotation; you can unquote strings and symbols. | 
| strip_punct | Should punctuation be stripped? | 
| strip_url | Should URLs (starting with  | 
| format | Either "text", "man", "latex", "html", or "xml". If not text, this uses the hunspell tokenizer, and can tokenize only by "word" | 
| to_lower | Whether to convert tokens to lowercase. If tokens include
URLS (such as with  | 
| drop | Whether original input column should get dropped. Ignored if the original input and new output column have the same name. | 
| collapse | Whether to combine text with newlines first in case tokens (such as sentences or paragraphs) span multiple lines. If NULL, collapses when token method is "ngrams", "skip_ngrams", "sentences", "lines", "paragraphs", or "regex". | 
| ... | Extra arguments passed on to tokenizers | 
unnest_tokens()
| 1 2 3 4 5 6 7 8 | library(dplyr)
tweets <- tibble(
   id = 1,
   txt = "@rOpenSci and #rstats see: https://cran.r-project.org"
)
tweets %>%
   unnest_tweets(out, txt)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.