Études de cas : créer des applications Web avec Shiny en R
Dean Attali
Shiny Consultant

Créée par votre collègue :
create_wordcloud(data, num_words = 100, background = "white")
data : texte pour le nuage de mots
"Some very long story"c("Some very", "long story")num_words : nombre maximal de mots
background : couleur d'arrière-planus_constitution <- "We the People of the United States, ..."create_wordcloud(data = us_constitution, num_words = 15, background = "yellow")

create_wordcloud() exige des connaissances en R
wordcloud2Output() + renderWordcloud2()Études de cas : créer des applications Web avec Shiny en R