5 Levels of Generating Word Cloud in Python
Word cloud is a new type of digital art

Word cloud, or called tag cloud, is a fantastic data visualization technique. Basically, it analysis the frequency of each word in a text and display the results in a beautiful way.
It is widely used in data analysis, digital marketing, advertisement and other areas. Some artists, such as Juan Osborne, even brought the idea of word cloud to contemporary art.
There are many ways and tools to generate a word cloud. But my favourite is the Pythonic way. In this article, I’ll introduce how to generate an amazing word cloud using a convenient Python module called wordcloud.
After reading, you can make your own word cloud art and become a contemporary artist too. 😎
1. Create a Simple Word Cloud
There are many Python tools for generating word clouds. But the wordcloud is a very convenient and user-friendly one. (Its source code is on GitHub.)
First of all, we need to install the wordcloud module:
pip install wordcloudThen, let’s jump into the water:












