Python source code: [download source: mpl_plot_pair_hex.py]
[download source: mpl_plot_pair_hex.py]
API documentation: plot_pair()
plot_pair()
import matplotlib.pyplot as plt import arviz as az az.style.use("arviz-darkgrid") centered = az.load_arviz_data("centered_eight") coords = {"school": ["Choate", "Deerfield"]} az.plot_pair( centered, var_names=["theta", "mu", "tau"], kind="hexbin", coords=coords, colorbar=True, divergences=True, ) plt.show()