Get startedGet started for free

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)

This exercise is part of the course

Python for Spreadsheet Users

View Course

Exercise instructions

  • Use sns.barplot() to create a graph of genre_totals with movie_genre on the x axis and revenue on the y-axis.
  • Display the plot.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

import seaborn as sns
import matplotlib.pyplot as plt

# Create barplot


# Display barplot
Edit and Run Code