Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(hier_clust.Rmd): typos #195

Merged
merged 2 commits into from
Jan 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions vignettes/articles/hier_clust.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ fake_dat %>%
```

This process continues, with the closest two clusters being joined (or
"aggolermated") at each step.
"agglomerated") at each step.


```{r, echo = FALSE}
Expand Down Expand Up @@ -198,7 +198,7 @@ tibble(
```


### Methods of aggolmeration
### Methods of agglomeration

At every step of the agglomeration, we measure distances between current
clusters. With each cluster containing (possibly) multiple points, what does
Expand Down Expand Up @@ -331,7 +331,7 @@ hc_preds

It's important to note that there is no guarantee that `predict()` on the
training data will produce the same results as `extract_cluster_assignments()`.
The process by which clusters are created during the aggolmerations results in
The process by which clusters are created during the agglomerations results in
a particular partition; but if a training observation is treated as new data, it
is predicted in the same manner as truly new information.

Expand Down
Loading