From 74151d055aae504fc2cb5c7ac700234dfbaeb4eb Mon Sep 17 00:00:00 2001 From: Anna Meyer <annapmeyer95@gmail.com> Date: Wed, 2 Aug 2023 09:59:10 -0400 Subject: [PATCH] fix p11 typo --- sum23/projects/p11/README.md | 3 +-- sum23/projects/p11/p11.ipynb | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/sum23/projects/p11/README.md b/sum23/projects/p11/README.md index 6956c8c..9b2e236 100644 --- a/sum23/projects/p11/README.md +++ b/sum23/projects/p11/README.md @@ -3,11 +3,10 @@ ## Corrections and clarifications: -* None yet. +* In Q10 and Q13, the first version of this assignment referenced a function `get_paths_in` that does not exist. You should use the function `get_all_paths_in` when solving Q10 and Q13. **Find any issues?** Create a post on Piazza - ## Instructions: This project will focus on **data analysis**, **creating scatter plots**, and **recursion**. In this project, you will continue from where you left off in P10. You will analyze the data structures you created in P10 to answer some interesting questions about our dataset. diff --git a/sum23/projects/p11/p11.ipynb b/sum23/projects/p11/p11.ipynb index 20c267d..1d0faa8 100644 --- a/sum23/projects/p11/p11.ipynb +++ b/sum23/projects/p11/p11.ipynb @@ -1415,7 +1415,7 @@ "source": [ "**Question 10:** What are the **paths** of the files in the `others` directory of the `broken_data` directory?\n", "\n", - "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_paths_in` function.\n", + "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_all_paths_in` function.\n", "\n", "**Warning:** Remember that you **must** only use `os.path.join` to create paths." ] @@ -1539,7 +1539,7 @@ "source": [ "**Question 13:** What are the **paths** of the files in the `broken_data` directory?\n", "\n", - "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_paths_in` function." + "Your output **must** be a **list** of **relative paths**. You **must** answer this question by calling the `get_all_paths_in` function." ] }, { -- GitLab