From b51c2254cf17bfa2a4c0eeb3e2fcbed0acc52f7e Mon Sep 17 00:00:00 2001 From: Amit Batra <75168062+amitbatra31@users.noreply.github.com> Date: Fri, 9 Jul 2021 19:07:28 +0530 Subject: [PATCH] typo in Readme transformed_feature_df instead of transformed_df --- 4-Classification/1-Introduction/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/4-Classification/1-Introduction/README.md b/4-Classification/1-Introduction/README.md index 38516901..07602ce1 100644 --- a/4-Classification/1-Introduction/README.md +++ b/4-Classification/1-Introduction/README.md @@ -264,12 +264,12 @@ Now that you have cleaned the data, use [SMOTE](https://imbalanced-learn.org/dev The data is nice and clean, balanced, and very delicious! -1. You can take one more look at the data using `transformed_df.head()` and `transformed_df.info()`. Save a copy of this data for use in future lessons: +1. You can take one more look at the data using `transformed_feature_df.head()` and `transformed_feature_df.info()`. Save a copy of this data for use in future lessons: ```python - transformed_df.head() - transformed_df.info() - transformed_df.to_csv("../data/cleaned_cuisine.csv") + transformed_feature_df.head() + transformed_feature_df.info() + transformed_feature_df.to_csv("../data/cleaned_cuisine.csv") ``` This fresh CSV can now be found in the root data folder.