ComenzarEmpieza gratis

Make it pretty with sns

Let's make the graph stakeholder-facing with some final touches.

Este ejercicio forma parte del curso

Python for Spreadsheet Users

Ver curso

Instrucciones del ejercicio

  • Use the appropriate sns function to utilize the preset style whitegrid.
  • Use the appropriate sns function to remove unwanted borders.

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Set style to whitegrid


sns.barplot(x='movie_genre', y='revenue', data=genre_totals)
plt.title('Revenue by Genre')
plt.xlabel('Movie Genre')
plt.ylabel('Revenue (USD)')

# Remove unwanted borders


plt.show()
Editar y ejecutar código