word cloud

#pip install wordcloud

from wordcloud import WordCloud, STOPWORDS

import matplotlib.pyplot as plt

text = 'The Word Cloud is created using the 100 most frequent words, excluding uninteresting words, such as I, who and that. You can choose to exclude addition words by dragging them to the Ignore region. You can include words that have been excluded by dragging them back into the word cloud'    

stopwords = set(STOPWORDS)

wordcloud = WordCloud(

        background_color='white',

        stopwords=stopwords,

        max_words=200,

        max_font_size=40, 

        scale=3,

        random_state=1,

        width = 300,

        height = 300

    ).generate(text)

plt.figure(figsize=(12, 12))

plt.imshow(wordcloud)

plt.show()