Best genres
Let's make another graphic, this time with movie genres instead.
Once again, here are the lines of code we used to summarize our sales
data into genre_totals
before graphing.
(scroll to the right to see more)
genre_totals = sales.groupby('movie_genre', as_index=False).sum()
genre_totals = genre_totals.sort_values('revenue', ascending=False).reset_index(drop=True)
Diese Übung ist Teil des Kurses
Python for Spreadsheet Users
Anleitung zur Übung
- Use
sns.barplot()
to create a graph ofgenre_totals
withmovie_genre
on the x axis andrevenue
on the y-axis. - Display the plot.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
import seaborn as sns
import matplotlib.pyplot as plt
# Create barplot
# Display barplot