केस स्टडीज़: R में Shiny के साथ वेब एप्लिकेशन बनाना
Dean Attali
Shiny Consultant

आपके मित्र द्वारा बनाया गया:
create_wordcloud(data, num_words = 100, background = "white")
data: वर्ड क्लाउड में इस्तेमाल होने वाला टेक्स्ट
"Some very long story"c("Some very", "long story")num_words: अधिकतम शब्दों की संख्या
background: बैकग्राउंड रंगus_constitution <- "We the People of the United States, ..."create_wordcloud(data = us_constitution, num_words = 15, background = "yellow")

create_wordcloud() का उपयोग करने के लिए R का ज्ञान चाहिए
wordcloud2Output() + renderWordcloud2()केस स्टडीज़: R में Shiny के साथ वेब एप्लिकेशन बनाना