Forest plot with shading

Forest plot with shading#

Forest plot marginal summaries with row shading to enhance reading

Matplotlib version of plot_forest_shade

Link to this page with the bokeh tab selected

Link to this page with the plotly tab selected

from arviz_base import load_arviz_data

import arviz_plots as azp

azp.style.use("arviz-variat")

data = load_arviz_data("rugby")
pc = azp.plot_forest(
    data,
    var_names=["home", "atts", "defs"],
    shade_label="team",
    backend="none",  # change to preferred backend
)
pc.show()

See also

API Documentation: plot_forest

Other examples with plot_forest#