FnuPlot


Series

Represents a series of data for the gp.Plot function The type can be constructed directly (by setting the plot parameter to the desired series type) or indirectly using static members such as 'Series.Histogram'

Constructors

ConstructorDescription
new(...)
Signature: (plot:SeriesType * data:Data * title:string option * lineColor:Color option * weight:int option * fill:FillStyle option) -> Series

Instance members

Instance memberDescription
Command
Signature: string

Returns the formatted gnuplot command

Data
Signature: Data

Returns the data of the series

Static members

Static memberDescription
Histogram(...)
Signature: (data:seq<float> * title:string option * lineColor:Color option * weight:int option * fill:FillStyle option) -> Series

Creates a histogram data series for a plot

Impulses(data, title, lineColor, weight)
Signature: (data:seq<DateTime * float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates an impulse data series for a plot of DateTime and y values

Impulses(data, title, lineColor, weight)
Signature: (data:string * title:string option * lineColor:Color option * weight:int option) -> Series

Creates an impulse data series for a function

Impulses(data, title, lineColor, weight)
Signature: (data:seq<float * float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates an impulse data series for a plot of xy values

Impulses(data, title, lineColor, weight)
Signature: (data:seq<float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates an impulse data series for a plot of y values

Lines(data, title, lineColor, weight)
Signature: (data:seq<DateTime * float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a line data series for a plot of DateTime and y values.

Lines(data, title, lineColor, weight)
Signature: (data:string * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a line data series for a function

Lines(data, title, lineColor, weight)
Signature: (data:seq<float * float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a line data series for a plot of xy values

Lines(data, title, lineColor, weight)
Signature: (data:seq<float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a line data series for a plot of y values

Points(data, title, lineColor, weight)
Signature: (data:seq<DateTime * float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a points data series for a plot of DateTime and y values

Points(data, title, lineColor, weight)
Signature: (data:string * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a points data series for a function

Points(data, title, lineColor, weight)
Signature: (data:seq<float * float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a points data series for a plot of xy values

Points(data, title, lineColor, weight)
Signature: (data:seq<float> * title:string option * lineColor:Color option * weight:int option) -> Series

Creates a points data series for a plot of y values

Fork me on GitHub