lift_curve

Plots.lift_curve(target_num: int = 0) Tuple[ndarray, ndarray][source]

Returns the data for the lift curve, as displayed in the getML monitor.

This requires that you call score() first. The data used for the curve will always be the data from the last time you called score().

Args:
target_num (int):

Indicates for which target you want to plot the lift curve. (Pipelines can have more than one target.)

Return:
(numpy.ndarray, numpy.ndarray):
  • The first array is the proportion of samples, usually displayed on the x-axis.

  • The second array is the lift, usually displayed on the y-axis.