Module Gnuplot.Splots

type t

Represents the data for the splot functions in the Gp module.

val lines_xyz : ?title:string -> ?color:Color.t -> ?weight:int -> (float * float * float) list -> t

lines_xyz creates a XYZ line plot.

val points_xyz : ?title:string -> ?color:Color.t -> ?weight:int -> (float * float * float) list -> t

points_xyz creates a scatter plot.

val linespoints_xyz : ?title:string -> ?color:Color.t -> ?weight:int -> (float * float * float) list -> t

points_xyz creates a XYZ points and lines plot.

val custom : string -> dim3 data -> t

Low-level, unsafe, interface, please see implementation.