CommencerCommencer gratuitement

Your first word cloud

We saw in the video that word clouds are very intuitive and a great and fast way to get a first impression on what a piece of text is talking about.

In this exercise, you will build your first word cloud. A string east_of_eden has been defined for you. It contains one of the first sentences of John Steinbeck's novel East of Eden. You can inspect its contents in the IPython Shell.

The matplotlib.pyplot package has been imported for you as plt.

Cet exercice fait partie du cours

Sentiment Analysis in Python

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

from ____ import ____

# Generate the word cloud from the east_of_eden string
cloud_east_of_eden = ____(background_color="white").____(east_of_eden)
Modifier et exécuter le code