Releases: reiinakano/scikit-plot
Releases · reiinakano/scikit-plot
v0.3.7
v0.3.5
New features:
plot_precision_recall_curve
andplot_roc_curve
have been deprecated forplot_precision_recall
andplot_roc
, respectively. The major difference is the deletion of thecurves
parameter and the use ofplot_macro
,plot_micro
, andclasses_to_plot
to choose which curves should be plotted. Thanks to @lugq1990 for this change.
v0.3.4
New feature:
decomposition.plot_pca_2d_projection
now has an option to show biplots! Thanks to @ryanliwag for the change.
v0.3.3
Hotfix release for RTD. Use conda and readthedocs.yml
v0.3.2
v0.3.1
Bugfix:
- Remove
nose
dependency preventing proper documentation build
v0.3.0
New features:
plot_learning_curve
has new parameterscoring
to allow custom scoring functions. By @jengelman- New plotting function
plot_calibration_curves
Deprecations
- The Factory API has been deprecated and will be removed in v0.4.0
scikitplot.plotters
has been deprecated and the functions in the Functions API have been distributed to various new modules. See documentation for more details.
v0.2.8
Features
- New option
hide_zeros
forplot_confusion_matrix
by @ExcaliburZero. #39 - New option to plot only certain labels in
plot_confusion_matrix
by @ExcaliburZero. #41 - New options to set colormaps for
plot_pca_2d_projection
,plot_silhouette
,plot_precision_recall_curve
,plot_roc_curve
, andplot_confusion_matrix
. #50
Bugfix:
- Fixed bug with nan values in confusion matrices by @ExcaliburZero (#42)