From f20d554564a94e74f4c34519d5fdac95b863dba8 Mon Sep 17 00:00:00 2001 From: Vishvanathan K Date: Tue, 6 Jul 2021 15:48:29 +0530 Subject: [PATCH] Fixed a Typo Removed an a statement which was repeated twice --- 2-Regression/3-Linear/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/2-Regression/3-Linear/README.md b/2-Regression/3-Linear/README.md index 9e0b95027..2a60658b2 100644 --- a/2-Regression/3-Linear/README.md +++ b/2-Regression/3-Linear/README.md @@ -81,7 +81,6 @@ Since you'll use Scikit-learn, there's no reason to do this by hand (although yo ```python from sklearn.preprocessing import LabelEncoder -new_pumpkins.iloc[:, 0:-1] = new_pumpkins.iloc[:, 0:-1].apply(LabelEncoder().fit_transform) new_pumpkins.iloc[:, 0:-1] = new_pumpkins.iloc[:, 0:-1].apply(LabelEncoder().fit_transform) ``` @@ -329,4 +328,4 @@ In this lesson we learned about Linear Regression. There are other important typ ## Assignment -[Build a Model](assignment.md) \ No newline at end of file +[Build a Model](assignment.md)