Closed
Description
Documentation Link
https://matplotlib.org/stable/users/explain/figure/api_interfaces.html#appendix-pylab-interface
Problem
In the description of the obsolete Pylab interface in the Matplotlib API overview,
https://matplotlib.org/stable/users/explain/figure/api_interfaces.html#appendix-pylab-interface
the Pylab import statement is incorrectly given as from matplotlib.pyplot import *
. This should be pylab
instead of pyplot
.
Suggested improvement
Replace by correct statement from matplotlib.pylab import *