Matplotlib
Introduction Matplotlib is the "grandfather" library of data visualization with Python. It was created by John Hunter. He created it to try to replicate MatLab's (another programming language) plotting capabilities in Python. So if you happen to be familiar with matlab, matplotlib will feel natural to you. It is an excellent 2D and 3D graphics library for generating scientific figures. Some of the major Pros of Matplotlib are: Generally easy to get started for simple plots Support for custom labels and texts Great control of every element in a figure High-quality output in many formats Very customizable in general Matplotlib allows you to create reproducible figures programmatically. Let's learn how to use it!Before continuing this lecture, I encourage you just to explore the official Matplotlib web page: http://matplotlib.org/ Let's walk through a very simple example using two numpy arrays: Example Let...