Plots¶
- class getml.pipeline.Plots(name: str)[source]¶
Custom class for handling the plots generated by the pipeline.
- Example:
recall, precision = my_pipeline.plots.precision_recall_curve() fpr, tpr = my_pipeline.plots.roc_curve()
Methods
lift_curve
([target_num])Returns the data for the lift curve, as displayed in the getML monitor.
precision_recall_curve
([target_num])Returns the data for the precision-recall curve, as displayed in the getML monitor.
roc_curve
([target_num])Returns the data for the ROC curve, as displayed in the getML monitor.