ESS local

ESS local#

faceted local ESS plot

Matplotlib version of plot_ess_local

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("centered_eight")
pc = azp.plot_ess(
    data,
    kind="local",
    backend="none",  # change to preferred backend
    rug=True,
)
pc.show()

See also

API Documentation: plot_ess

Other examples with plot_ess#