Python source code: [download source: bokeh_plot_kde_quantiles.py]
[download source: bokeh_plot_kde_quantiles.py]
API documentation: plot_kde()
plot_kde()
import numpy as np import arviz as az dist = np.random.beta(np.random.uniform(0.5, 10), 5, size=1000) ax = az.plot_kde(dist, quantiles=[0.25, 0.5, 0.75], backend="bokeh")