evalml.pipelines.
graph_roc_curve
Generate and display a Receiver Operating Characteristic (ROC) plot.
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.
plotly.Figure representing the ROC plot generated