typo in Readme

transformed_feature_df instead of transformed_df
pull/122/head
Amit Batra 4 years ago committed by GitHub
parent 997451675b
commit b51c2254cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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! 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 ```python
transformed_df.head() transformed_feature_df.head()
transformed_df.info() transformed_feature_df.info()
transformed_df.to_csv("../data/cleaned_cuisine.csv") transformed_feature_df.to_csv("../data/cleaned_cuisine.csv")
``` ```
This fresh CSV can now be found in the root data folder. This fresh CSV can now be found in the root data folder.

Loading…
Cancel
Save