LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Sentiment Analysis in Python

Kurs anzeigen

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

from ____ import ____

# Generate the word cloud from the east_of_eden string
cloud_east_of_eden = ____(background_color="white").____(east_of_eden)
Code bearbeiten und ausführen