September 2019
Intermediate to advanced
420 pages
10h 29m
English
You might be in luck again: if you followed the advice outlined in the previous chapter and installed the Python Anaconda stack, you already have Matplotlib installed and are ready to go. Otherwise, you might want to visit http://matplotlib.org for installation instructions.
Just as we used the np shorthand for NumPy, we will use some standard shorthand for the Matplotlib imports:
In [1]: import matplotlib as mplIn [2]: import matplotlib.pyplot as plt
The plt interface is what we will use most often, as we shall see throughout this book.
Read now
Unlock full access