Wordcloud
A word cloud (also called tag cloud or weighted list) is a visual representation of text data. Words are usually single words, and the importance of each is shown with font size or color. Python
fortunately has a wordcloud
library allowing to build them.
⏱ Quick start
The wordcloud
library is here to help you build a wordcloud in minutes. Here is a basic code snippets using the WordCloud()
function to get you started.🔥
# Libraries
from wordcloud import WordCloud
import matplotlib.pyplot as plt
# Create a list of word
text=("Python Python Python Matplotlib")
# Create the wordcloud object
wordcloud = WordCloud(width=480, height=480, margin=0).generate(text)
# Display the generated image:
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis("off")
plt.margins(x=0, y=0)
plt.show()
⚠️ The issue with wordclouds
Wordclouds are aesthetically pleasing and people are used to it, what make sure readers will understand them quick.
However, it is important to consider the caveats associated to them. For instance,longer words will take more space on the figure by construction which distorts reality. Moreover, it is impossible to translate a font size to an accurate value.
Wordclouds with... the wordcloud
library 😀
Thanks to the wordcloud library, we have a Wordcloud()
function. We just have to pass a large string of text to it, and it will generate a wordcloud for us.
Then, we just have to call the imshow()
function from matplotlib to display the wordcloud.
Wordclouds and custom shapes
It is a common need to apply a specific shape to the wordcloud. It's an excellent way to make the wordcloud more relevant to the data you are displaying. The wordcloud
library allows you to do it by using a mask, and it's quite easy to do!
You can find the official documentation here and some examples of how to use it in practice below.
Best wordcloud examples
Below are some of the best wordcloud examples that you can find. They are all made with Python and the wordcloud
library.