'''
    Author:
    Day 18 Classwork - Problem #1

    We want to answer the following question:
    What is the variation of magnitudes in the recorded earthquakes?

    To answer the question you must plot the magnitudes of earthquakes stored
    in the data structure given by get_report.
    Use the lines below for some starting code.
'''

import matplotlib.pyplot as plt
import earthquakes

quakes = earthquakes.get_report("day","all")