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.