package gnuplot
Library
Module
Module type
Parameter
Class
Class type
lines data
creates a data series for a line plot of Y values.
lines_xy data
creates a data series for a line plot of X and Y values.
val lines_timey :
?title:string ->
?color:Color.t ->
?weight:int ->
zone:timezone ->
(time * float) list ->
t
lines_timey ~zone data
creates a data series for a line plot with time axis in the given time zone
.
lines_datey data
creates a data series for a line plot of date and Y values.
lines_func f
creates a data series for a line plot of the values given by a function f
specified in the Gnuplot format, eg `sin(x)`. The X values come from the range object that was supplied to one of the plot functions in the Gp
module.
points data
creates a data series for a point plot of Y values.
points_xy data
creates a data series for a point plot of X and Y values.
val points_timey :
?title:string ->
?color:Color.t ->
?weight:int ->
zone:timezone ->
(time * float) list ->
t
points_timey ~zone data
creates a data series for a point plot with time axis in the given time zone
.
points_datey data
creates a data series for a point plot of date and Y values.
points_func f
creates a data series for a point plot of the values given by a function f
specified in the Gnuplot format, eg `sin(x)`. The X values come from the range object that was supplied to one of the plot functions in the Gp
module below.
linespoints data
creates a data series for a lines and points plot of Y values.
linespoints_xy data
creates a data series for a lines and points plot of X and Y values.
val linespoints_timey :
?title:string ->
?color:Color.t ->
?weight:int ->
zone:timezone ->
(time * float) list ->
t
linespoints_timey ~zone data
creates a data series for a lines and points plot with time axis in the given time zone
.
linespoints_datey data
creates a data series for a lines and points plot of date and Y values.
linespoints_func f
creates a data series for a lines and points plot of the values given by a function f
specified in the Gnuplot format, eg `sin(x)`. The X values come from the range object that was supplied to one of the plot functions in the Gp
module below.
steps data
creates a data series for a step function of Y values.
steps_xy data
creates a data series for a step function of X and Y values.
val steps_timey :
?title:string ->
?color:Color.t ->
?weight:int ->
zone:timezone ->
(time * float) list ->
t
steps_timey ~zone data
creates a data series for a step function with time axis in the given time zone
.
steps_datey data
creates a data series for a step function of date and Y values.
val histogram :
?title:string ->
?color:Color.t ->
?weight:int ->
?fill:Filling.t ->
float list ->
t
histogram data
creates a data series for a histogram of Y values.