Skip to content

Instantly share code, notes, and snippets.

@sAbakumoff
Created September 12, 2016 14:54
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/5d157d1e96db966b157daa4ada535ba6 to your computer and use it in GitHub Desktop.
Save sAbakumoff/5d157d1e96db966b157daa4ada535ba6 to your computer and use it in GitHub Desktop.
tidy_commits %>%
filter(name=="react") %>%
count(word, sort = TRUE) %>%
head(15) %>%
mutate(word = reorder(word, n)) %>%
ggplot(aes(word, n)) +
geom_bar(stat = "identity", fill=I("#53d2fa")) +
labs(y="Occurrences", title="Most Common Words in React Commit Messages") +
coord_flip()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment