From 9d26c547f8e58f027b1d85b43be8057e9d53d021 Mon Sep 17 00:00:00 2001 From: Ravindranath Sawane <65583665+ravindranath-sawane@users.noreply.github.com> Date: Tue, 3 Aug 2021 09:33:15 +0530 Subject: [PATCH] Update README.md --- 2-Regression/1-Tools/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/2-Regression/1-Tools/README.md b/2-Regression/1-Tools/README.md index 2bd3f7f2d7..69986fba29 100644 --- a/2-Regression/1-Tools/README.md +++ b/2-Regression/1-Tools/README.md @@ -183,6 +183,9 @@ In a new code cell, load the diabetes dataset by calling `load_diabetes()`. The ```python plt.scatter(X_test, y_test, color='black') plt.plot(X_test, y_pred, color='blue', linewidth=3) + plt.xlabel('Scaled BMIs') + plt.ylabel('Disease Progression') + plt.title('A Graph Plot Showing Diabetes Progression Against BMI') plt.show() ```