fix cross-device link error
[PyX.git] / examples / graphstyles / errorbar.py
blob7c685c1a0b5480ba7daed8c5ab66bdddfd2961de
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")
8 g.writeSVGfile("errorbar")