seaborn chart exampleΒΆ

import seaborn as sns
df = sns.load_dataset('tips')
sns.relplot(
    data=df,
    x="total_bill", y="tip", col="time",
    hue="smoker", style="smoker", size="size"
)
<seaborn.axisgrid.FacetGrid at 0x7f946a1c2440>
../_images/37bd4289a62deeef456acc5eea46733faeb17d3ef030fa7dc76f131fdc593591.png