evalml.pipelines.graph_roc_curve

evalml.pipelines.graph_roc_curve(y_true, y_pred_proba, custom_class_names=None, title_addition=None)[source]

Generate and display a Receiver Operating Characteristic (ROC) plot.

Parameters
  • y_true (pd.Series or np.array) – true labels.

  • y_pred_proba (pd.Series or np.array) – predictions from a classifier, before thresholding has been applied. Note this should a one dimensional array with the predicted probability for the “true” label in the binary case.

  • custom_class_labels (list or None) – if not None, custom labels for classes. Default None.

  • title_addition (str or None) – if not None, append to plot title. Default None.

Returns

plotly.Figure representing the ROC plot generated