This function creates a wordcloud plot from word frequencies.
wordCloudPlot(
word_freqs,
seed = NULL,
min_freq = 1,
max_words = 50,
pcolors = NULL,
family = NULL,
...
)Table. Table of word frequencies.
Numeric. Seed value can be supplied to reproduce a word cloud layout.
Numeric. Minimum word frequency to include a word in the word cloud. Default is 1.
Numeric. Maximum number of words to render in the word cloud. Default is 50.
List. Colors to assign categorical variable in the plot or palette to use if random.color.
Default is NULL.
Character. Set a font family for plot labels. Default is NULL.
Arguments passed on to wordcloud::wordcloud
random.orderplot words in random order. If false, they will be plotted in decreasing frequency
random.colorchoose colors randomly from the colors. If false, the color is chosen based on the frequency
rot.perproportion words with 90 degree rotation
A wordcloud plot.