๐Ÿ“ˆSeaborn

A library based on Matplotlib for creating visualizations with a higher-level interface

๐Ÿ”— GitHubarrow-up-right | Websitearrow-up-right

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.

Documentation

Online documentation is available at seaborn.pydata.orgarrow-up-right.

The docs include a tutorialarrow-up-right, example galleryarrow-up-right, API referencearrow-up-right, and other useful information.

Dependencies

Seaborn supports Python 3.7+ and no longer supports Python 2.

Installation requires numpyarrow-up-right, pandasarrow-up-right, and matplotlibarrow-up-right. Some functions will optionally use scipyarrow-up-right and/or statsmodelsarrow-up-right if they are available.

Installation

The latest stable release (and required dependencies) can be installed from PyPI:

pip install seaborn

It is also possible to include the optional dependencies:

pip install seaborn[all]

You may instead want to use the development version from Github:

Seaborn is also available from Anaconda and can be installed with conda:

Visitorsarrow-up-right

Last updated