From cbac15b6088a11ae79c69a5359d70d9213c29390 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sat, 12 Jun 2021 23:46:12 -0400 Subject: [PATCH] Remove quote to fix grammar of "two columns" In this case, we are using the phrase "two columns" as the plural subject; it's not used in a possessive case. --- ml/cc/exercises/linear_regression_with_a_real_dataset.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ml/cc/exercises/linear_regression_with_a_real_dataset.ipynb b/ml/cc/exercises/linear_regression_with_a_real_dataset.ipynb index 66927de..7268918 100644 --- a/ml/cc/exercises/linear_regression_with_a_real_dataset.ipynb +++ b/ml/cc/exercises/linear_regression_with_a_real_dataset.ipynb @@ -806,7 +806,7 @@ "\n", " * `1.0`: perfect positive correlation; that is, when one attribute rises, the other attribute rises.\n", " * `-1.0`: perfect negative correlation; that is, when one attribute rises, the other attribute falls. \n", - " * `0.0`: no correlation; the two column's [are not linearly related](https://en.wikipedia.org/wiki/Correlation_and_dependence#/media/File:Correlation_examples2.svg).\n", + " * `0.0`: no correlation; the two columns [are not linearly related](https://en.wikipedia.org/wiki/Correlation_and_dependence#/media/File:Correlation_examples2.svg).\n", "\n", "In general, the higher the absolute value of a correlation value, the greater its predictive power. For example, a correlation value of -0.8 implies far more predictive power than a correlation of -0.2.\n", "\n",