Use more descriptive label names

This commit is contained in:
coolneng 2020-12-08 14:34:55 +01:00
parent c5a147e5df
commit bed9f1d0e9
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 87 KiB

View File

@ -98,15 +98,15 @@ def plot_all_figures(results):
plot_individual_figure( plot_individual_figure(
results, results,
type="roc", type="roc",
x_axis="fpr", x_axis="False positive rate",
y_axis="tpr", y_axis="True positive rate",
fig_title="ROC AUC curve", fig_title="ROC AUC curve",
) )
plot_individual_figure( plot_individual_figure(
results, results,
type="confusion_matrix", type="confusion_matrix",
x_axis="fpr", x_axis="Predicted values",
y_axis="tpr", y_axis="Real values",
fig_title="Confusion Matrix", fig_title="Confusion Matrix",
) )