Using R, you can see what how often words occur in an aggregated data set. It is often used in business for text mining of notes in tickets as well as customer surveys. Using a Corpus and TermDocumentMatrix in R we can organize the data accordingly to extract the most common word combos.
Direct File: https://github.com/ProfessorPitch/Pro...
Software Versions:
R 3.3.3
Java = jre1.8.0_171 (64 bit)
R Packages:
library(NLP)
library(tm)
library(RColorBrewer)
library(wordcloud)
library(ggplot2)
library(data.table)
library(rJava)
library(RWeka)
library(SnowballC)