NSF-REU 2021 Python | Part 4

Coding basics (Python) | Part 4 - Overview

matplotlib | pyplot

Slides:

Downloads:

To code along, just create your own new Jupyter Notebook. In the first cell, import Numpy, Matplotlib and Pyplot:

import numpy as np
import matplotlib as mpl # optional
import matplotlib.pyplot as plt

Homework:

Homework is always optional but a great way of practicing what you have learned during the course.
If you have questions, send them via e-mail. I might either respond to you individually or address common questions at the beginning of next the session.

Downloads (right-click & save as):

In this homework you will continue your work from last week with weather data from NYC Central Park.

Use the same Notebook (or a copy), and add the necessary imports at the top.

Please feel free to plot whatever you want to see and explore how the data looks like.
Of course, you find ideas in the Jupyter Notebook (and their solutions if you need them, separately)