From b24f282bca4af63982937c10835063d3e6e9eb74 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 21 Feb 2016 18:08:55 -0800 Subject: add many, many more example conversions. still not complete --- examples/graphstyles/errorbar.jl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 examples/graphstyles/errorbar.jl (limited to 'examples/graphstyles/errorbar.jl') diff --git a/examples/graphstyles/errorbar.jl b/examples/graphstyles/errorbar.jl new file mode 100644 index 0000000..94b80dc --- /dev/null +++ b/examples/graphstyles/errorbar.jl @@ -0,0 +1,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") + -- cgit v1.2.3