ModelEvaluatorPlot
- class ModelEvaluatorPlot[source]
Bases:
objectPlotting class for
ModelEvaluatorresults.Visualizes the two
ModelEvaluatortables:scores()draws grouped confidence-interval bars of the cross-validated scores per (model, metric) fromModelEvaluator.run(), andcompare()draws the paired model comparison fromModelEvaluator.eval()as signed delta bars with bootstrap-CI whiskers and significance markers.Every plotting method returns a
(fig, ax)pair (a thin tuple subclass): unpack asfig, ax = .... For backward compatibility, the returned object also forwards attribute access toax.Added in version 1.1.0.
See also
ModelEvaluatorfor the logic class whose results this visualizes.
Methods
compare(df_eval[, figsize, colors, alpha])Plot the paired model comparison as signed delta bars with CI whiskers.
scores(df_eval[, figsize, colors, metrics])Plot cross-validated scores per (model, metric) as grouped bars with CI error bars.
- __init__()[source]
See also
ModelEvaluator: the logic class whose evaluation and comparison this visualizes.