Update README.md

This commit is contained in:
gcalderone 2020-04-01 20:51:06 +02:00 committed by GitHub
parent 03acd27705
commit a644aecc0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,22 +8,20 @@ Build status | [![Build Status](https://travis-ci.org/gcalderone/Gnuplot.jl.svg
**Examples** | ![Examples](https://img.shields.io/website?up_message=examples&url=https%3A%2F%2Flazarusa.github.io%2Fgnuplot-examples%2F) **Examples** | ![Examples](https://img.shields.io/website?up_message=examples&url=https%3A%2F%2Flazarusa.github.io%2Fgnuplot-examples%2F)
**Gnuplot.jl** provides a simple package able to send both data and commands from Julia to an underlying [gnuplot](http://gnuplot.sourceforge.net/) process. Its main purpose it to provide a fast and powerful data visualization framework, using an extremely concise Julia syntax. **Gnuplot.jl** is a simple package able to send both data and commands from Julia to an underlying [gnuplot](http://gnuplot.sourceforge.net/) process. Its main purpose it to provide a fast and powerful data visualization framework, using an extremely concise Julia syntax.
The documentation can be found [here](https://gcalderone.github.io/Gnuplot.jl/dev/), while the gallery of examples is maintained [here](https://lazarusa.github.io/gnuplot-examples/).
## Installation ## Installation
Install with: Install with:
```julia-repl ```julia
]dev Gnuplot ]dev Gnuplot
``` ```
A working [gnuplot](http://gnuplot.sourceforge.net/) package must be installed on your platform. A working [gnuplot](http://gnuplot.sourceforge.net/) package must be installed on your platform.
Test package: Test package:
```julia-repl ```julia
using Gnuplot using Gnuplot
println(Gnuplot.gpversion()) println(Gnuplot.gpversion())
test_terminal() test_terminal()