fix kwarg call

This commit is contained in:
Bogumił Kamiński 2022-02-26 16:05:15 +01:00
parent 65977e8d22
commit 16e09c33f1

View File

@ -253,7 +253,7 @@ end
# Code for listing 13.12
test_roc = roc(test, score=:predict, target=:arrest)
test_roc = roc(test; score=:predict, target=:arrest)
plot(test_roc.pfa, test_roc.pmiss;
color="black", lw=3,
label="test (AUC=$(round(100*auc(test_roc), digits=2))%)",