Mlpost.Radar
Radar diagrams.
This module draws radar diagrams.
val stack : ?radius:Num.t -> ?color:Color.t list -> ?pen:Pen.t -> ?style:Dash.t list -> ?ticks:float ->
?label:string list -> ?scale:float list -> float list list -> Picture.t
stack l
builds a picture from a list l
of floating-point lists. The radars are all drawn on the same picture. Each sublist represents one radar datas. All sublists must have the same length.
val compare : ?radius:Num.t -> ?color:Color.t list -> ?fill:bool -> ?pen:Pen.t -> ?style:Dash.t list ->
?ticks:float -> ?label:string list -> ?scale:float list -> float list list -> Picture.t list
stack l
builds a list of pictures from a list l
of floating-point lists. Each picture represents one radar, and all picture have the same size. Each sublist represents one radar datas, and all sublists must have the same length. For most optional arguments, see function stack
above.