Open
Description
Stacked histogram:
https://discourse.holoviz.org/t/stacked-histogram/6205
Boxplot is fine:
df_melted = res.bins.melt()
df_melted.hvplot(kind="box", y='value', by='variable', c='variable', invert=True, xlabel="variable", ylabel="value",
cmap=colors_hex[::-1], legend=False,
width=500, height=500, padding=0.4)
