ESS comparison#
Full ESS (Either local or quantile) comparison between different models
from arviz_base import load_arviz_data
import arviz_plots as azp
azp.style.use("arviz-variat")
c = load_arviz_data("centered_eight")
n = load_arviz_data("non_centered_eight")
pc = azp.plot_ess(
{"Centered": c, "Non Centered": n},
backend="none", # change to preferred backend
)
pc.show()
See also
API Documentation: plot_ess
Other examples with plot_ess
#

