Sourcetype hist =
< breaks : float array
; counts : float array
; density : float array
; mids : float array
; xname : string
; equidist : bool > Sourceval hist :
?breaks:[ `n of int | `l of float array | `m of [ `Sturges | `Scott | `FD ] ] ->
?freq:bool ->
?include_lowest:bool ->
?right:bool ->
?main:string ->
?xlab:string ->
?ylab:string ->
?xlim:(float * float) ->
?ylim:(float * float) ->
?plot:bool ->
float array ->
hist Sourcetype plot_type = [ | `Points| `Lines| `Both| `Overplotted| `Histogram| `Stair_steps| `Other_steps| `Nothing
] Sourcetype log_scale = [ | `X| `Y| `XY
] Sourceval plot :
?main:string ->
?xlab:string ->
?ylab:string ->
?xlim:(float * float) ->
?ylim:(float * float) ->
?plot_type:plot_type ->
?lwd:int ->
?col:string ->
?log:log_scale ->
x:float array ->
?y:float array ->
unit ->
unit Sourcetype line_type = [ | `blank| `solid| `dashed| `dotted| `dotdash| `longdash| `twodash
] Sourceval lines :
?lty:line_type ->
?lwd:int ->
?col:string ->
x:float array ->
?y:float array ->
unit ->
unit Sourceval points :
?pch:int ->
?col:string ->
x:float array ->
?y:float array ->
unit ->
unit Sourceval legend :
?col:string array ->
?lty:line_type array ->
?lwd:float array ->
?pch:int array ->
[ `bottomright
| `bottom
| `bottomleft
| `left
| `topleft
| `top
| `topright
| `right
| `center ] ->
string array ->
unit Sourceval abline :
?a:float ->
?b:float ->
?h:float ->
?v:float ->
?lty:line_type ->
?lwd:int ->
?col:string ->
unit ->
unit Sourceval par : ?mfrow:(int * int) -> unit -> unit Sourceval smooth_scatter :
?main:string ->
?xlab:string ->
?ylab:string ->
x:float array ->
?y:float array ->
unit ->
unit Sourceval text :
?adj:(float option * float option) ->
?pos:int ->
?cex:float ->
?col:string ->
x:float array ->
?y:float array ->
labels:string array ->
unit ->
unit Sourceval axis :
?at:float array ->
?labels:[ `Yes | `No | `Custom of string array ] ->
?tick:[ `Yes | `No | `Custom of string array ] ->
?line:int ->
?pos:float ->
?outer:bool ->
?font:int ->
?lty:line_type ->
?lwd:float ->
?lwd'ticks:float ->
[ `below | `left | `above | `right ] ->
unit