38 lines
1.4 KiB
Markdown
38 lines
1.4 KiB
Markdown
# Gnuplot.jl
|
|
## A Julia interface to Gnuplot.
|
|
|
|
[](https://travis-ci.org/gcalderone/Gnuplot.jl)
|
|
[](LICENSE.md)
|
|
[](https://gcalderone.github.io/Gnuplot.jl/dev/)
|
|

|
|
|
|
|
|
**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.
|
|
|
|
|
|
## Installation
|
|
|
|
Install with:
|
|
```julia
|
|
]dev Gnuplot
|
|
```
|
|
A working [gnuplot](http://gnuplot.sourceforge.net/) package must be installed on your platform.
|
|
|
|
|
|
Test package:
|
|
```julia
|
|
using Gnuplot
|
|
println(Gnuplot.gpversion())
|
|
test_terminal()
|
|
```
|
|
|
|
## Quick start
|
|
|
|
## Examples
|
|
The main gallery of examples is maintained in a separate repository:
|
|
https://lazarusa.github.io/gnuplot-examples/
|
|
|
|
Since **Gnuplot.jl** is just an interface, it can reproduce all the plots generated by gnuplot. Further examples are available here:
|
|
- http://gnuplot.sourceforge.net/demo_5.2/
|
|
- http://www.gnuplotting.org/
|