evalml.model_understanding.
normalize_confusion_matrix
Normalizes a confusion matrix.
conf_mat (ww.DataTable, pd.DataFrame or np.ndarray) – Confusion matrix to normalize.
normalize_method ({'true', 'pred', 'all'}) – Normalization method. Supported options are: ‘true’ to normalize by row, ‘pred’ to normalize by column, or ‘all’ to normalize by all values. Defaults to ‘true’.
normalized version of the input confusion matrix. The column header represents the predicted labels while row header represents the actual labels.
pd.DataFrame