Scatterplot all variables against each other

Scatterplot all variables against each other#

Plot all variables against each other in the dataset.

Matplotlib version of plot_pair_distribution

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_pair(
    data,
    var_names=["mu","theta","tau"],
    coords= {"school": ["Choate", "Deerfield"]},
    backend="none", # change to preferred backend
)
pc.show()

See also

API Documentation: plot_pair

Other examples with plot_pair#