Parallel coordinates plot

Parallel coordinates plot#

Plot parallel coordinates plot showing posterior points with divergences..

Matplotlib version of plot_parallel

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")

dt = load_arviz_data("centered_eight")
pc = azp.plot_parallel(
    dt,
    var_names=["theta", "tau", "mu"],
    norm_method="rank",
    label_type="vert",
    backend="none",  # change to preferred backend
)
pc.show()

See also

API Documentation: plot_parallel

Other examples with plot_parallel#