Skip to content
Snippets Groups Projects
Commit 81e0a4ba authored by Anna Meyer's avatar Anna Meyer
Browse files

add p10 and lab10

parent b9d21d6d
No related branches found
No related tags found
No related merge requests found
# Lab 10: Files and Namedtuples
In this lab, you'll get practice with files and namedtuples, in preparation for P10.
-----------------------------
## Corrections/Clarifications
**Find any issues?** Please let Jane know during lab or create a Piazza post.
------------------------------
## Learning Objectives
In this lab, you will practice...
* Loading data in json files
* Loading data in csv files
* Using try/except to handle malformed data.
------------------------------
## Note on Academic Misconduct
You may do these lab exercises only with your project partner; you are not allowed to start
working on Lab 10 with one person, then do the project with a different partner. Now may be a
good time to review [our course policies](https://canvas.wisc.edu/courses/355767/pages/syllabus?module_item_id=6048035).
**Important:** P10 and P11 are two parts of the same data analysis.
You **cannot** switch project partners between these two projects.
If you partner up with someone for P10, you have to sustain that partnership until end of P11.
------------------------------
## Segment 1: Setup
Create a `lab10` directory and download the following files into the `lab10` directory.
* `small_data.zip`
* `practice.ipynb`
* `practice_test.py`
After downloading `small_data.zip`, make sure to extract it (using [Mac directions](http://osxdaily.com/2017/11/05/how-open-zip-file-mac/) or [Windows directions](https://support.microsoft.com/en-us/help/4028088/windows-zip-and-unzip-files)). After extracting, you should see a folder called `small_data`, which has the following files in it:
*` mapping_1.json`
* `mapping_2.json`
* `mapping_3.json`
* `stars_1.csv`
* `stars_2.csv`
* `stars_3.csv`
* `planets_1.csv`
* `planets_2.csv`
* `planets_3.csv`
You may delete `small_data.zip` after extracting these files from it.
## Segment 2:
For the remaining segments, detailed instructions are provided in `practice.ipynb`. From the terminal, open a `jupyter notebook` session, open your `practice.ipynb`, and follow the instructions in `practice.ipynb`.
## Project 10
You can now get started with [P10](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/tree/main/sum23/projects/p10). **You may copy/paste any code created here in project P10**. Have fun!
sum23/labs/lab10/images/files.jpg

7.11 KiB

This diff is collapsed.
This diff is collapsed.
File added
# Project 10 (P10): Looking at Stars and Planets
## Corrections and clarifications:
* None yet
**Find any issues?** Please create a post on Piazza
## Instructions:
This project will focus on **file handling**, **namedtuples**, **data cleaning** and **error handling**. To start, download [`p10.ipynb`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/blob/main/sum23/projects/p10/p10.ipynb), [`p10_test.py`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/blob/main/sum23/projects/p10/p10_test.py), and [`data.zip`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/blob/main/sum23/projects/p10/data.zip).
After downloading `data.zip`, make sure to extract it (using [Mac directions](http://osxdaily.com/2017/11/05/how-open-zip-file-mac/) or [Windows directions](https://support.microsoft.com/en-us/help/4028088/windows-zip-and-unzip-files)). After extracting, you should see a folder called `data`, which has the following files in it:
* `mapping_1.json`
* `mapping_2.json`
* `mapping_3.json`
* `mapping_4.json`
* `mapping_5.json`
* `stars_1.csv`
* `stars_2.csv`
* `stars_3.csv`
* `stars_4.csv`
* `stars_5.csv`
* `planets_1.csv`
* `planets_2.csv`
* `planets_3.csv`
* `planets_4.csv`
* `planets_5.csv`
You may delete `data.zip` after extracting these files from it.
You will work on `p10.ipynb` and hand it in. You should follow the provided directions for each question. Questions have **specific** directions on what **to do** and what **not to do**.
**Important warning:** Since P10 deals heavily with file handling, whether or not the test cases pass depends greatly on the operating system being used. Even if your code passes all tests locally, it may **fail on Gradescope** if it uses a different operating system. To avoid these issues, **follow the instructions** in P10 carefully, and **after submission, check to see that all your test cases pass on the Gradescope autograder**.
------------------------------
## IMPORTANT Submission instructions:
- Review the [Grading Rubric](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-lecture-material/-/blob/main/sum23/projects/p10/rubric.md), to ensure that you don't lose points during code review.
- You must **save your notebook file** before you run the cell containing **export**.
- Login to [Gradescope](https://www.gradescope.com/) and upload the zip file into the P10 assignment.
- If you completed the project with a **partner**, make sure to **add their name** by clicking "Add Group Member"
in Gradescope when uploading the P10 zip file.
<img src="images/add_group_member.png" width="400">
**Warning:** You will have to add your partner on Gradescope even if you have filled out this information in your `p10.ipynb` notebook.
- It is **your responsibility** to make sure that your project clears auto-grader tests on the Gradescope test system. Otter test results should be available in a few minutes after your submission. You should be able to see both PASS / FAIL results for the 20 test cases and your total score, which is accessible via Gradescope Dashboard (as in the image below):
<img src="images/gradescope.png" width="400">
- **Important:** After you submit, you **need to verify** that your code is visible on Gradescope. If you displayed the output of a large variable (such as `planets_list`) anywhere in your notebook, **we will not be able to view or grade your submission**. Make sure you don't have any large outputs in any of your cells, and verify after submission that your code can be viewed.
File added
# Images
Images from p10 are stored here.
```python
```
sum23/projects/p10/images/add_group_member.png

157 KiB

sum23/projects/p10/images/gradescope.png

150 KiB

This diff is collapsed.
This diff is collapsed.
......@@ -68,7 +68,7 @@
- Required data structure is not used (-1)
- Incorrect logic is used to answer (-1)
- Plot is not properly labeled (-1)
- Plot is incorrect (-1)ible/not properly labeled (-2)
- Plot is incorrect (-1)
- `get_all_paths_in` (6)
- Hardcoding the name of directory inside the function (-1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment