blob: 94b80dc83660359ca2bef9bb90053d9120a0ed6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Original Python:
# from pyx import *
#
# g = graph.graphxy(width=8)
# g.plot(graph.data.file("errorbar.dat", x=1, y=2, dy=3),
# [graph.style.symbol(), graph.style.errorbar()])
# g.writeEPSfile("errorbar")
# g.writePDFfile("errorbar")
# g.writeSVGfile("errorbar")
using PyX
g = graph.graphxy(width=8)
plot(g, graph_data.file("examples/graphstyles/errorbar.dat", x=1, y=2, dy=3),
[graph_style.symbol(), graph_style.errorbar()])
writeEPSfile(g, "errorbar")
writePDFfile(g, "errorbar")
|