Now lets look at creating a word cloud. Word clouds are an image that demonstrate the frequency of key words within a set of text. The larger the word in the image, the more apparent significance it has in the body of text.
Creating a word cloud from a StackOverflow job listing
Getting ready
We will use the Word Cloud library to create our word cloud. The source for the library is available at https://github.com/amueller/word_cloud. This library can be installed into your Python environment using pip install wordcloud.
How to do it
The script to create the word...