MPL

Super simple matplotlib example

import matplotlib.pyplot as plt

Make a plot

plt.plot([1, 2, 3], [4, 5, 6])
mpl

Out:

[<matplotlib.lines.Line2D object at 0x7f1797279a10>]

Show it

plt.show()

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

Gallery generated by Sphinx-Gallery