Put a title on it
Let's take our genre_totals barplot from the last chapter and improve it with better labels, less boarders, and a preset style. First, let's add a title.
Note that seaborn and matplotlib.pyplot have been loaded for you as sns and plt, respectively.
Diese Übung ist Teil des Kurses
Python for Spreadsheet Users
Anleitung zur Übung
- Use
sns.barplot()to create a graph ofgenre_totalswithmovie_genreon the x axis andrevenueon the y-axis. - Add the title
Revenue by Genreto the plot using the correctpltfunction.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Create barplot
# Add a title
plt.____(____)
plt.show()