You are reading an old version of the documentation (v3.1.0). For the latest version see https://matplotlib.org/stable/gallery/pyplots/pyplot_simple.html
Version 3.1.0
matplotlib
Fork me on GitHub

Table of Contents

Related Topics

Pyplot Simple

A most simple plot, where a list of numbers is plotted against their index.

import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()
../../_images/sphx_glr_pyplot_simple_001.png

References

The use of the following functions, methods, classes and modules is shown in this example:

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery