Menu

[r3358]: / trunk / htdocs / examples / log_bar.py  Maximize  Restore  History

Download this file

26 lines (17 with data), 477 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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()
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.