package prbnmcn-gnuplot
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Plot.ScatterSource
Preparing scatter plots.
Source
val points_2d :
points:r2 Data.t ->
?style:Style.t ->
?legend:string ->
?error_bars:r2 Data.t ->
unit ->
r2 specpoints_2d ~points ~style ?legend () creates a 2d scatter plot using style to select color and point shape.
- The optional argument
?styledefaults toStyle.default - The optional argument
?legenddefaults to"". - The optional argument
?error_bars, if present, is a sequence ofr2elements such that each element(y1, y2)is displayed as a vertical error bar. The error bar associated to the element(x, y)then correspond to the segment starting at(x, y + y1)and ending at(x, y - y2).