aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-02-21 14:01:29 -0800
committerbnewbold <bnewbold@robocracy.org>2016-02-21 14:01:29 -0800
commita1fad974dc49871bc87f8de99cec9f7731099d1a (patch)
tree47ea27cfe87cc61b8480b66306a67532f894b978 /README.md
downloadPyX.jl-a1fad974dc49871bc87f8de99cec9f7731099d1a.tar.gz
PyX.jl-a1fad974dc49871bc87f8de99cec9f7731099d1a.zip
meta-files
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d013970
--- /dev/null
+++ b/README.md
@@ -0,0 +1,33 @@
+
+This is a Julia wrapper of the PyX plotting and TeX graphics library from
+Python.
+
+It is a work in progress, broken, and will set your computer on fire.
+
+## Example
+
+```
+using PyX
+
+g = graph.graphxy(width=8)
+plot(graph_data_function("y(x)=sin(x)/x", min=-15, max=15))
+writeEPSfile(g, "function")
+writePDFfile(g, "function")
+writeSVGfile(g, "function")
+```
+
+## Install
+
+There are no installation instructions.
+
+## Notes and Caveats
+
+PyX >= 0.13 (2013) is Python3 only. PyX <= 0.12.1 is Python2.
+
+Instead of Python's `None`, use Julia's `nothing`.
+
+`graph_data.function` won't work in Julia because `function` is a reserved
+word. Use `graph_data_function` instead.
+
+Also check the TODO file.
+