Mlpost.Hist
Draw Bar diagrams (Histograms).
Histograms.
This module draws histograms.
val simple : ?width:Num.t -> ?height:Num.t -> ?padding:Num.t -> ?fill:Color.t list -> ?perspective:bool ->
?hcaption:Picture.t -> ?vcaption:Picture.t -> ?histlabel:(Command.vposition * Picture.t labels) -> ?vlabel:Plot.labels -> ?hlabel:Picture.t list ->
float list -> Command.t
simple l
draws an histogram from a list l
of floating-point values.
val compare : ?width:Num.t -> ?height:Num.t -> ?padding:Num.t -> ?fill:Color.t list -> ?perspective:bool ->
?hcaption:Picture.t -> ?vcaption:Picture.t -> ?histlabel:(Command.vposition * Picture.t list labels) -> ?vlabel:Plot.labels -> ?hlabel:Picture.t list ->
float list list -> Command.t
compare l
draws a comparative histogram from a list l
of floating-point lists. For optional arguments, see function simple
above.
val stack : ?width:Num.t -> ?height:Num.t -> ?padding:Num.t -> ?fill:Color.t list -> ?perspective:bool ->
?hcaption:Picture.t -> ?vcaption:Picture.t -> ?histlabel:(Command.vposition * Picture.t list labels) -> ?vlabel:Plot.labels -> ?hlabel:Picture.t list ->
float list list -> Command.t
compare l
draws a stacked histogram from a list l
of floating-point lists. For optional arguments, see function simple
above.