mlpost
OCaml library on top of Metapost
1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
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.