Convergence diagnostics distribution

Convergence diagnostics distribution#

Plot the distribution of ESS and R-hat.

Matplotlib version of plot_convergence_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("radon")
pc = azp.plot_convergence_dist(
    data,
    var_names=["za_county"],
    backend="none",  # change to preferred backend
)

pc.show()

See also

API Documentation: plot_convergence_dist

Other examples with plot_convergence_dist#