ArviZ-plots

1.0.0 · active · verified Thu Apr 16

ArviZ-plots is a new Python library (v1.0.0) designed to provide ready-to-use and composable plots specifically for Bayesian workflow. It offers a flexible and modular plotting interface, building upon ArviZ's `InferenceData` object for modern visualization needs. As a `1.0.0` release, it aims for API stability in future patch versions.

Common errors

Warnings

Install

Imports

Quickstart

This example loads sample Bayesian inference data using ArviZ and then generates a pair plot using ArviZ-plots, demonstrating the core `plot_pair` function.

import arviz as az
from arviz_plots import plot_pair

# Load example InferenceData from ArviZ
idata = az.load_arviz_data("centered_eight")

# Create a basic pair plot
plot_pair(idata)

view raw JSON →