From 2ebb63f6496835b835ada9bfe4628a8e7ffe9688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82=20Kami=C5=84ski?= Date: Sat, 26 Feb 2022 16:10:34 +0100 Subject: [PATCH] small syntax change --- ch13.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch13.jl b/ch13.jl index 1ffe9d9..3d86d22 100644 --- a/ch13.jl +++ b/ch13.jl @@ -247,7 +247,7 @@ histogram!(test_groups[(true,)].predict; # Code for computing of confusion matrix @chain test begin - @rselect(:observed=:arrest, :predicted=:predict > 0.15) + @rselect(:predicted=:predict > 0.15, :observed=:arrest) proptable(:predicted, :observed; margins=2) end