diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-02-21 18:08:55 -0800 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-02-21 18:08:55 -0800 |
commit | b24f282bca4af63982937c10835063d3e6e9eb74 (patch) | |
tree | fd8c58601beb3964ccecf4709f7b28944fc1c36b /examples/3dgraphs/bar.jl | |
parent | 84572be10cdfc852530787a5dc78ddef3e0f23cd (diff) | |
download | PyX.jl-b24f282bca4af63982937c10835063d3e6e9eb74.tar.gz PyX.jl-b24f282bca4af63982937c10835063d3e6e9eb74.zip |
add many, many more example conversions. still not complete
Diffstat (limited to 'examples/3dgraphs/bar.jl')
-rw-r--r-- | examples/3dgraphs/bar.jl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/examples/3dgraphs/bar.jl b/examples/3dgraphs/bar.jl new file mode 100644 index 0000000..a70f2b2 --- /dev/null +++ b/examples/3dgraphs/bar.jl @@ -0,0 +1,28 @@ + +# Original Python: +# from pyx import * +# +# g = graph.graphxyz(0, 0, size=5, x=graph.axis.bar(), y=graph.axis.bar(), z=nothing, z2=graph.axis.lin()) +# g.plot(graph.data.data(graph.data.points([[1, 1, 1.4], [1, 2, 1.8], [2, 1, -0.5], [2, 2, 0.9]]), xname=1, yname=2, z2=3), +# [graph.style.barpos(fromvalue=0, frompathattrs=nothing), graph.style.bar(barattrs=[style.linejoin.bevel])]) +# g.writeEPSfile("bar") +# g.writePDFfile("bar") +# g.writeSVGfile("bar") + + +using PyX + +g = graph.graphxyz(0, 0, size=5, + x=graph_axis.bar(), + y=graph_axis.bar(), + z=nothing, + z2=graph_axis.lin()) +plot(g, graph_data.data(graph_data.points([[1 1 1.4]; + [1 2 1.8]; + [2 1 -0.5]; + [2 2 0.9]]), xname=1, yname=2, z2=3), + [graph_style.barpos(fromvalue=0, frompathattrs=nothing), + graph_style.bar(barattrs=[style_linejoin.bevel])]) +writeEPSfile(g, "bar") +writePDFfile(g, "bar") + |