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/bargraphs/compare.jl | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/bargraphs/compare.jl (limited to 'examples/bargraphs/compare.jl') diff --git a/examples/bargraphs/compare.jl b/examples/bargraphs/compare.jl new file mode 100644 index 0000000..b2a43e3 --- /dev/null +++ b/examples/bargraphs/compare.jl @@ -0,0 +1,22 @@ + +# Original Python: + +# from pyx import * + +# g = graph.graphxy(width=8, x=graph.axis.nestedbar()) +# g.plot([graph.data.file("minimal.dat", xname="$0, 0", y=2), +# graph.data.file("minimal.dat", xname="$0, 1", y=3)], +# [graph.style.bar()]) +# g.writeEPSfile("compare") +# g.writePDFfile("compare") +# g.writeSVGfile("compare") + +using PyX +using LaTeXStrings + +g = graph.graphxy(width=8, x=graph_axis.nestedbar()) +plot(g, [graph_data.file("examples/bargraphs/minimal.dat", xname=L"$0, 0", y=2), + graph_data.file("examples/bargraphs/minimal.dat", xname=L"$0, 1", y=3)], + [graph_style.bar()]) +writeEPSfile(g, "compare") +writePDFfile(g, "compare") -- cgit v1.2.3