seaborn

Dal sito ufficiale: https://seaborn.pydata.org/


Seaborn is a library for making statistical graphics in Python.
It builds on top of matplotlib and integrates closely with pandas data structures.

Seaborn helps you explore and understand your data.
Its plotting functions operate on dataframes and arrays containing whole datasets and internally perform the necessary semantic mapping and statistical aggregation to produce informative plots.
Its dataset-oriented, declarative API lets you focus on what the different elements of your plots mean, rather than on the details of how to draw them.

Installa seaborn  con

pip install seaborn

Utilizza la libreria con l’alias sns

import seaborn as sns

Gli esempi ufficiali sono sviluppati per essere eseguiti all’interno di Jupiter.
Se li esegui in IDLE devi aggiungere il codice seguente per visualizzare i grafici

...

import matplotlib.pyplot as plt
plt.show()

Funzionalità

RISORSE