You are reading an old version of the documentation (v1.4.0). For the latest version see https://matplotlib.org/stable/
matplotlib

Previous topic

pylab_examples example code: shared_axis_demo.py

Next topic

pylab_examples example code: simple_plot_fps.py

This Page

pylab_examples example code: simple_plot.pyΒΆ

(Source code, png, hires.png, pdf)

../../_images/simple_plot.png
from pylab import *

t = arange(0.0, 2.0, 0.01)
s = sin(2*pi*t)
plot(t, s)

xlabel('time (s)')
ylabel('voltage (mV)')
title('About as simple as it gets, folks')
grid(True)
savefig("test.png")
show()

Keywords: python, matplotlib, pylab, example, codex (see Search examples)