From the course: Python Data Analysis
Unlock the full course today
Join today to access over 24,500 courses taught by industry experts.
Weather charts - Python Tutorial
From the course: Python Data Analysis
Weather charts
- [Instructor] We're going to conclude our experimentation by making a quick but impressive weather visualization that showcases the power and flexibility of NumPY and Matplotlib. A visualization is inspired by the New York Times weather chart shown here, and it'll present daily minimum and maximum, the purple band. In the context of their normal range, dark gray, and of the historical records, light gray. By the way, let me show you how to add images to a Jupyter Notebook. If I double click on the cell containing the New York Times visualization, we see that it's just a markdown cell with a small chunk of HTML, which in this case refers to a file in the current directory, but we could also use a full URL. A shift+enter in the cell and it goes back to showing the image. So let's make a plot. We will again use Pasadena as an example, but you will be able to do your own city if it's represented in the noaa data sets. And since we want records across many years, we need all the data that…