CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Python for Spreadsheet Users

Afficher le cours

Instructions

  • Use sns.barplot() to create a graph of genre_totals with movie_genre on the x axis and revenue on the y-axis.
  • Add the title Revenue by Genre to the plot using the correct plt function.

Exercice interactif pratique

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

# Create barplot


# Add a title
plt.____(____)

plt.show()
Modifier et exécuter le code