MPL

Super simple matplotlib example

import matplotlib.pyplot as plt

Make a plot

plt.plot([1, 2, 3], [4, 5, 6])
mpl
[<matplotlib.lines.Line2D object at 0x7ff617384310>]

Show it

plt.show()

Total running time of the script: (0 minutes 0.173 seconds)

Gallery generated by Sphinx-Gallery