From 50b737d97eff5003871cd25ee5b333a7c0c804ae Mon Sep 17 00:00:00 2001 From: Jen Looper Date: Sat, 19 Jun 2021 16:41:03 -0400 Subject: [PATCH] path to data edit --- 4-Classification/1-Introduction/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4-Classification/1-Introduction/README.md b/4-Classification/1-Introduction/README.md index 933717bb7..0692f38c4 100644 --- a/4-Classification/1-Introduction/README.md +++ b/4-Classification/1-Introduction/README.md @@ -212,7 +212,7 @@ Name: cuisine, dtype: int64 The data is nice and clean, balanced, and very delicious! 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: ```python -transformed_df.to_csv("../../data/cleaned_cuisine.csv") +transformed_df.to_csv("../data/cleaned_cuisine.csv") ``` This fresh CSV can now be found in the root data folder.