From bb664b65d32a5b961ba15fe4967ec8fef59892b0 Mon Sep 17 00:00:00 2001 From: Tom Prior Date: Tue, 21 Jun 2016 17:59:40 -0400 Subject: [PATCH] Update variation.Rmd change "effects the outcome" to "affects the outcome" --- variation.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variation.Rmd b/variation.Rmd index a879747..10c099b 100644 --- a/variation.Rmd +++ b/variation.Rmd @@ -418,7 +418,7 @@ ggplot(small_iris, aes(x = Sepal.Width, y = Sepal.Length)) + geom_point(aes(color = factor(clusters))) ``` -You can modify the hierarchical clustering algorithm by setting the method argument of hclust to one of "complete", "single", "average", or "centroid". The method determines how to measure the distance between two clusters or a lone point and a cluster, a measurement that effects the outcome of the algorithm. +You can modify the hierarchical clustering algorithm by setting the method argument of hclust to one of "complete", "single", "average", or "centroid". The method determines how to measure the distance between two clusters or a lone point and a cluster, a measurement that affects the outcome of the algorithm. ```{r, echo = FALSE} knitr::include_graphics("images/EDA-linkage.pdf")