From d70312fb78ae851d36996ac994432f1109a5f031 Mon Sep 17 00:00:00 2001 From: brad-gh <32170926+brad-gh@users.noreply.github.com> Date: Thu, 1 Sep 2022 09:54:15 -0400 Subject: [PATCH] delete q1 (#50) Week 2 Day 1 ex1 question 1 #27 --- piscine/week02/day01/ex01/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/piscine/week02/day01/ex01/README.md b/piscine/week02/day01/ex01/README.md index 573f449..4cab1fa 100644 --- a/piscine/week02/day01/ex01/README.md +++ b/piscine/week02/day01/ex01/README.md @@ -6,8 +6,6 @@ The goal of this exercise is to learn to fit a Scikit-learn estimator and use it X, y = [[1],[2.1],[3]], [[1],[2],[3]] ``` -1. Fit a LinearRegression from Scikit-learn with X the features and y the target. +1. Fit a LinearRegression from Scikit-learn with X the features and y the target and predict for `x_pred = [[4]]` -2. Predict for `x_pred = [[4]]` - -3. Print the coefficients (`coefs_`) and the intercept (`intercept_`), the score (`score`) of the regression of X and y. \ No newline at end of file +2. Print the coefficients (`coefs_`) and the intercept (`intercept_`), the score (`score`) of the regression of X and y.