From 3d459690c21fca368e5915b6e31ec3e54dbc9e08 Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Fri, 10 Apr 2020 15:13:10 +0200 Subject: [PATCH] Docs updated --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d6b93ca..84d319e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The latest version of **Gnuplot.jl** is 1.1.0. ## Quick start -The following examples are supposed to be rather self-explaining. See [documentation](https://gcalderone.github.io/Gnuplot.jl/v1.1.0/) for further informations. +The following examples are supposed to be self-explaining. See [documentation](https://gcalderone.github.io/Gnuplot.jl/v1.1.0/) for further informations. ### A simple parabola ```julia @@ -39,6 +39,7 @@ save("parabola.gp") # => save a script file with both data and command to re-cr ``` ![ex1.png](examples/ex1.png) + ### A slightly more complex plot, with unicode on X tics ```julia x = -2pi:0.1:2pi @@ -55,6 +56,7 @@ save(term="pngcairo size 640,480", output="examples/ex2.png") ``` ![ex2.png](examples/ex2.png) + ### Multiplot: a 2D histogram contour plot and a 3D surface plot ```julia x = randn(10_000)