Skip to content

Commit 8569651

Browse files
bugfix index cls1
1 parent fdd9f34 commit 8569651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/classification1.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ data. So how can we perform K-nearest neighbors classification in the presence
13291329
of missing data? Well, since there are not too many observations with missing
13301330
entries, one option is to simply remove those observations prior to building
13311331
the K-nearest neighbors classifier. We can accomplish this by using the
1332-
`drop_na` function from `tidyverse` prior to working with the data.\label{missing data!drop\_na}
1332+
`drop_na` function from `tidyverse` prior to working with the data.\index{missing data!drop\_na}
13331333

13341334
```{r 05-naomit}
13351335
no_missing_cancer <- missing_cancer |> drop_na()

0 commit comments

Comments
 (0)