package gnuplot

  1. Overview
  2. Docs

Description

Gnuplot-OCaml provides a simple interface to Gnuplot from OCaml. The API supports only 2D graphs and was inspired by FnuPlot.

Published: 13 Sep 2017

README

Gnuplot-OCaml - Simple interface to Gnuplot

Gnuplot-OCaml provides a simple interface to Gnuplot from OCaml. The API supports only 2D graphs and was inspired by FnuPlot.

Installation

From OPAM

$ opam install gnuplot

From Source

$ make
$ make install

NOTE: For a persistent X11 terminal add set term x11 persist to your .gnuplot file in your home directory.

Usage

Documentation

The API-documentation of this distribution can be built with make doc. It can also be found online.

Examples

This simple example

:::ocaml
open Gnuplot

let () =
  let gp = Gp.create () in
  Gp.plot_many gp ~range:(Range.XY (-10., 10., -1.5, 1.5))
   [ Series.lines_func  "sin(x)" ~title:"Plot a line" ~color:`Blue
   ; Series.points_func "cos(x)" ~title:"Plot points" ~color:`Green ];
  Gp.close gp

generates the following plot:

For more examples please refer to the examples-directory of this distribution. You can build the examples with jbuilder, e.g.

$ jbuilder gbm_paths.exe

Running

$ _build/default/gbm_paths.exe

displays 10 simulated paths of geometric Brownian motion:

Contact Information

In case of bugs, feature requests and similar, please contact:

Dependencies (4)

  1. jbuilder >= "1.0+beta7"
  2. conf-gnuplot
  3. core < "v0.13"
  4. ocaml >= "4.03.0"

Dev Dependencies

None

Used by

None

Conflicts

None