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

We're updating the default styles for Matplotlib 2.0

Learn what to expect in the new updates

matplotlib

Previous topic

pylab_examples example code: subplot_demo.py

Next topic

pylab_examples example code: subplots_adjust.py

This Page

pylab_examples example code: subplot_toolbar.pyΒΆ

(Source code)

#!/usr/bin/env python

from pylab import *

fig = figure()
subplot(221)
imshow(rand(100,100))
subplot(222)
imshow(rand(100,100))
subplot(223)
imshow(rand(100,100))
subplot(224)
imshow(rand(100,100))

subplot_tool()
show()

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