aboutsummaryrefslogtreecommitdiffstats
path: root/examples/graphstyles/histogram.jl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/graphstyles/histogram.jl')
-rw-r--r--examples/graphstyles/histogram.jl29
1 files changed, 29 insertions, 0 deletions
diff --git a/examples/graphstyles/histogram.jl b/examples/graphstyles/histogram.jl
new file mode 100644
index 0000000..ebe35c6
--- /dev/null
+++ b/examples/graphstyles/histogram.jl
@@ -0,0 +1,29 @@
+
+# Original Python:
+# from pyx import *
+#
+# d = graph.data.points([(1, 0.3),
+# (2, -0.7),
+# (3, -0.3),
+# (4, 0.8),
+# (5, 0.5)], x=1, y=2)
+#
+# g = graph.graphxy(width=8)
+# g.plot(d, [graph.style.histogram()])
+# g.writeEPSfile("histogram")
+# g.writePDFfile("histogram")
+# g.writeSVGfile("histogram")
+
+using PyX
+
+d = graph_data.points([(1, 0.3),
+ (2, -0.7),
+ (3, -0.3),
+ (4, 0.8),
+ (5, 0.5)], x=1, y=2)
+
+g = graph.graphxy(width=8)
+plot(g, d, [graph_style.histogram()])
+writeEPSfile(g, "histogram")
+writePDFfile(g, "histogram")
+