Mines a user-defined column of text and creates a word cloud from the identified words and bigrams.
word_cloud_plot(
data = NULL,
text_column = NULL,
word_count = 50,
known_bigrams = c("working group")
)
dataframe of one column (named 'word') that can be used for word cloud creation. One row per bigram supplied in `known_bigrams` or single word (not including "stop words")
dataframe containing at least one column
character, name of column in dataframe given to `data` that contains the text to be mined
numeric, number of words to be returned (counts from most to least frequent)
character vector, all bigrams (two-word phrases) to be mined before mining for single words