Case Studies: Building Web Applications with Shiny in R
Dean Attali
Shiny Consultant

Created by your friend:
create_wordcloud(data, num_words = 100, background = "white")
data: text to use in word cloud
"Some very long story"c("Some very", "long story")num_words: maximum number of words
background: background colorus_constitution <- "We the People of the United States, ..."create_wordcloud(data = us_constitution, num_words = 15, background = "yellow")

create_wordcloud() requires R knowledge to use
wordcloud2Output() + renderWordcloud2()Case Studies: Building Web Applications with Shiny in R