File: errorbar_demo.py

package info (click to toggle)
matplotlib 0.98.1-1%2Blenny4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 18,624 kB
  • ctags: 22,599
  • sloc: python: 76,915; cpp: 63,459; ansic: 5,353; makefile: 111; sh: 12
file content (47 lines) | stat: -rw-r--r-- 991 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from pylab import *

t = arange(0.1, 4, 0.1)
s = exp(-t)
e = 0.1*abs(randn(len(s)))
f = 0.1*abs(randn(len(s)))
g = 2*e
h = 2*f

figure()
errorbar(t, s, e, fmt='o')             # vertical symmetric

figure()
errorbar(t, s, None, f, fmt='o')       # horizontal symmetric

figure()
errorbar(t, s, e, f, fmt='o')          # both symmetric

figure()
errorbar(t, s, [e,g], [f,h], fmt='--o')  # both asymmetric

figure()
errorbar(t, s, [e,g], f, fmt='o', ecolor='g')      # both mixed

figure()
errorbar(t, s, e, [f,h], fmt='o')      # both mixed

figure()
errorbar(t, s, [e,g], fmt='o')         # vertical asymmetric

figure()
errorbar(t, s, yerr=e, fmt='o')        # named

figure()
errorbar(t, s, xerr=f, fmt='o')        # named
xlabel('Distance (m)')
ylabel('Height (m)')
title('Mean and standard error as a function of distance')

figure()
ax = subplot(111)
ax.set_yscale('log')
errorbar(t, s+2, e, f, fmt='o')          # both symmetric

#savefig('errorbar_demo')
show()