aboutsummaryrefslogtreecommitdiffstats
path: root/examples/bargraphs/compare.jl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bargraphs/compare.jl')
-rw-r--r--examples/bargraphs/compare.jl22
1 files changed, 22 insertions, 0 deletions
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")