Applied upstream as r3028 r3025 r3024
[PyX/mjg.git] / examples / graphstyles / errorbar.py
bloba12d0f333ecdb7e0e51cfc6a32ba7fa7f7a15f0d
1 from pyx import *
3 g = graph.graphxy(width=8)
4 g.plot(graph.data.file("errorbar.dat", x=1, y=2, dy=3),
5 [graph.style.symbol(), graph.style.errorbar()])
6 g.writeEPSfile("errorbar")
7 g.writePDFfile("errorbar")