Docs updated

This commit is contained in:
Giorgio Calderone 2020-04-10 15:13:10 +02:00
parent 7fa9a3af53
commit 3d459690c2

View File

@ -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)