{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Homework 12 - Chapter 17" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "- Due Date: Wednesday, April 29th no later than 11:59 p.m.\n", "- Partner Information: Learning to collaborate with others is an important skill and one that employers value.\n", "To receive credit, this assignment requires you to partner with a classmate and submit one solution for the two of you.\n", "- Submission Instructions: Upload your solution, entitled **YourFirstName-YourLastName-PartnerFirstName-PartnerLastName-Homework12.ipynb** to the Canvas Homework 6 Dropbox.\n", "**Note**: only one person needs to submit a solution. If you and your partner both submit a solution, the submission that will be graded is the one from the partner whose last name comes alphabetically first.\n", "- Deadline Reminder: Once the submission deadline passes, Canvas will no longer accept your submission and you will no longer be able to earn credit. Thus, if you are not able to fully complete the assignment, submit whatever you have before the deadline so that partial credit can be earned." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Starting Code" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "from datascience import *\n", "import matplotlib.pyplot as plots\n", "%matplotlib inline\n", "import numpy as np" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Download the file pokemon.csv\n", "into the same directory as this Jupyter notebook." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
| name | primary_type | hp | height_m | weight_kg | habitat | \n", "
|---|---|---|---|---|---|
| bulbasaur | grass | 45 | 0.7 | 6.9 | grassland | \n", "
| ivysaur | grass | 60 | 1 | 13 | grassland | \n", "
| venusaur | grass | 80 | 2 | 100 | grassland | \n", "
... (1022 rows omitted)
" ], "text/plain": [ "