From 23267c2d5d2e7b54d7c9e6f1a63eef4017d19419 Mon Sep 17 00:00:00 2001 From: doyu Date: Fri, 19 Aug 2022 07:59:11 +0300 Subject: [PATCH] Update 07-how-random-forests-really-work.ipynb Fix typo? --- 07-how-random-forests-really-work.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-how-random-forests-really-work.ipynb b/07-how-random-forests-really-work.ipynb index 7da2d3e60..698126d24 100644 --- a/07-how-random-forests-really-work.ipynb +++ b/07-how-random-forests-really-work.ipynb @@ -908,7 +908,7 @@ "source": [ "How can we improve our OneR classifier, which predicts survival based only on `Sex`?\n", "\n", - "How about we take each of our two groups, `female` and `male`, and create one more binary split for each of them. That is: fine the single best split for females, and the single best split for males. To do this, all we have to do is repeat the previous section's steps, once for males, and once for females.\n", + "How about we take each of our two groups, `female` and `male`, and create one more binary split for each of them. That is: find the single best split for females, and the single best split for males. To do this, all we have to do is repeat the previous section's steps, once for males, and once for females.\n", "\n", "First, we'll remove `Sex` from the list of possible splits (since we've already used it, and there's only one possible split for that binary column), and create our two groups:" ]