Skip to content

Instantly share code, notes, and snippets.

@sAbakumoff
Created September 11, 2016 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sAbakumoff/28c40e2786cc2ec6a4525617db698fff to your computer and use it in GitHub Desktop.
Save sAbakumoff/28c40e2786cc2ec6a4525617db698fff to your computer and use it in GitHub Desktop.
library(tidytext)
data("stop_words")
tidy_commits <- react_angular_commits %>%
select(name, message) %>%
unnest_tokens(word, message) %>%
anti_join(stop_words)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment