From 73affd84fd2312bfe69a6039af7644c4153b9215 Mon Sep 17 00:00:00 2001 From: Frederick Legaspi Date: Wed, 15 Dec 2021 12:58:58 -0500 Subject: [PATCH] Update README.md Scatterplot PNG file is not fully readable when using a dark theme. Created new PNG file white background. --- 2-Regression/1-Tools/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-Regression/1-Tools/README.md b/2-Regression/1-Tools/README.md index ee7c72f5..483d669d 100644 --- a/2-Regression/1-Tools/README.md +++ b/2-Regression/1-Tools/README.md @@ -189,7 +189,7 @@ In a new code cell, load the diabetes dataset by calling `load_diabetes()`. The plt.show() ``` - ![a scatterplot showing datapoints around diabetes](./images/scatterplot.png) + ![a scatterplot showing datapoints around diabetes](./images/scatterplot-wb.png) ✅ Think a bit about what's going on here. A straight line is running through many small dots of data, but what is it doing exactly? Can you see how you should be able to use this line to predict where a new, unseen data point should fit in relationship to the plot's y axis? Try to put into words the practical use of this model.