seaborn module python code example

Example 1: seaborn

#pip install seaborn

#conda install seaborn

import seaborn as sns

#Seaborn is a Python data visualization library based on matplotlib
#It provides a high-level interface for drawing attractive and informative statistical graphics.

#Example Gallery
#https://seaborn.pydata.org/examples/index.html

Example 2: seaborn documentation

sns.relplot(x="total_bill", y="tip", col="time",
            hue="smoker", style="smoker", size="size",
            data=tips)