You are reading an old version of the documentation (v2.2.0). For the latest version see https://matplotlib.org/stable/gallery/pyplots/pyplot_three.html
Version 2.2.0
matplotlib
Fork me on GitHub

Related Topics

This Page

Pyplot ThreeΒΆ

../../_images/sphx_glr_pyplot_three_001.png
import numpy as np
import matplotlib.pyplot as plt

# evenly sampled time at 200ms intervals
t = np.arange(0., 5., 0.2)

# red dashes, blue squares and green triangles
plt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^')
plt.show()

Gallery generated by Sphinx-Gallery