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

Previous topic

pylab_examples example code: loadrec.py

Next topic

pylab_examples example code: log_demo.py

This Page

pylab_examples example code: log_bar.pyΒΆ

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

../../_images/log_bar.png
#!/usr/bin/env python

from matplotlib import pylab

data = ((3,1000), (10,3), (100,30), (500, 800), (50,1))

pylab.xlabel("FOO")
pylab.ylabel("FOO")
pylab.title("Testing")
pylab.gca().set_yscale('log')

dim = len(data[0])
w = 0.75
dimw = w / dim

x = pylab.arange(len(data))
for i in range(len(data[0])) :
    y = [d[i] for d in data]
    b = pylab.bar(x + i * dimw, y, dimw, bottom=0.001)
pylab.gca().set_xticks(x + w / 2)
pylab.gca().set_ylim( (0.001,1000))

pylab.show()

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