MMMCVPlotSuite.param_stability#

MMMCVPlotSuite.param_stability(cv_data=None, var_names=None, dims=None, figsize=None, figure_kwargs=None, backend=None, return_as_pc=False, **pc_kwargs)[source]#

Forest plot comparing parameter posteriors across all CV folds.

Parameters:
cv_dataaz.InferenceData or None

Override the stored self.cv_data for this call only.

var_nameslist[str] or None

Variables to include (passed directly to azp.plot_forest).

dimsdict or None

Filter coordinate values before plotting (e.g. {"channel": ["tv"]}).

figsizetuple or None

Figure size in inches; takes precedence over figure_kwargs["figsize"].

figure_kwargsdict or None

Extra kwargs for the figure constructor; merged with defaults.

backendstr or None

PlotCollection backend.

return_as_pcbool

Return the raw PlotCollection instead of (Figure, NDArray[Axes]).

**pc_kwargs

Forwarded to azp.plot_forest().

Returns:
tuple[Figure, NDArray[Axes]] or PlotCollection