To begin, use Python and SQLAlchemy to do basic climate analysis and data exploration of your climate database. All of the following analysis should be completed using SQLAlchemy ORM queries, Pandas, and Matplotlib.
create_engine
to connect to your sqlite database.automap_base()
to reflect your tables into classes and save a reference to those classes called Station
and Measurement
.date
and prcp
values.date
.plot
method.func.min
, func.max
, func.avg
, and func.count
in your queries.bins=12
.