Page
Library
Module
Module type
Parameter
Class
Class type
Source
Ocaml-Gnuplot provides a simple interface to Gnuplot from OCaml. The API supports only 2D graphs and was inspired by FnuPlot.
This is a fork of https://bitbucket.org/ogu/gnuplot-ocaml/ . Changes mainly include API changes that are friendlier with module Gp = Gnuplot (as opposed to open Gnuplot), moving to dune for the build, and removing Core as a dependency.
From OPAM
$ opam install gnuplotFrom Source
$ make
$ make installNOTE: For a persistent X11 terminal add set term x11 persist to your .gnuplot file in your home directory.
The API-documentation of this distribution can be built with make doc. It can also be found online.
This simple example
module Gp = Gnuplot
let () =
let gp = Gp.create () in
Gp.plot_many gp ~range:(Gp.Range.XY (-10., 10., -1.5, 1.5))
[ Gp.Series.lines_func "sin(x)" ~title:"Plot a line" ~color:`Blue
; Gp.Series.points_func "cos(x)" ~title:"Plot points" ~color:`Green ];
Gp.close gpgenerates the following plot:

For more examples please refer to the examples-directory of this distribution. You can build the examples with dune, e.g.
$ dune build examples/gbm_paths.exeRunning
$ dune exec examples/gbm_paths.exedisplays 10 simulated paths of geometric Brownian motion: