Note
Click here to download the full example code
Sphinx gallery exampleΒΆ

# Some commentary
import numpy as np
from matplotlib import pyplot as plt
x = np.arange(100)
y = x**2
fig, ax = plt.subplots()
ax.plot(x, y)
plt.show()
Total running time of the script: ( 0 minutes 0.089 seconds)