Homework 18
- Due Mar 29, 2016 by 9:30am
- Points 10
- Submitting a file upload
- File Types py
- Available until Apr 19, 2016 at 9:30am
For the following exercises we have provided you with some starting code in python. Download the .py files and put them in your computational thinking folder (the one we created on installation). Open the files in spyder, add your name at the top next to the "Author" field and write the code for the exercise in it. Upload all the appropriate files to each question as your response to this assignment.
Problem #1
File: hw-18-q1.py Download hw-18-q1.py
We want to answer the following question: What is the variation of depths in the recorded earthquakes?
To answer the question you must plot the depths of earthquakes stored in the data structure given by get_report. Use the python file above as your starter code.
Problem # 2
File: hw-18-q2.py Download hw-18-q2.py
We want to answer the following question: What is the variation of depths in the recorded earthquakes, in the state of Alaska?
To answer the question you must plot the depths of earthquakes stored in the data structure given by get_report, for the given state. The code provided counts the number of earthquakes in that state. Review the code to understand how to check the location of the earthquake, in relation to the state. You may also reuse some of the code for your solution.