Rank and distribution plot

Rank and distribution plot#

Two column layout with marginal distributions on the left and fractional ranks on the right

Matplotlib version of plot_rank_dist

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("non_centered_eight")
pc = azp.plot_rank_dist(
    data,
    var_names=["mu", "tau"],
    backend="none"  # change to preferred backend
)
pc.show()

See also

API Documentation: plot_rank_dist

Other examples with plot_rank_dist#