October 2018
Beginner to intermediate
676 pages
18h 30m
English
Let's see how simple it is to work in interactive mode:
%matplotlib inline
import matplotlib as mplimport matplotlib.pyplot as plt
plt.ion()
mpl.is_interactive()
plt.plot([1.5, 3.0])
You should see the following graph as the output:
Read now
Unlock full access