Trivariate histogram with two categorical variables#

../_images/three_variable_histogram.png

seaborn components used: set_theme(), load_dataset(), displot()

import seaborn as sns
sns.set_theme(style="dark")

diamonds = sns.load_dataset("diamonds")
sns.displot(
    data=diamonds, x="price", y="color", col="clarity",
    log_scale=(True, False), col_wrap=4, height=4, aspect=.7,
)