Owl_base_stats
Statistics: random number generators, PDF and CDF functions, and hypothesis tests. The module also includes some basic statistical functions such as mean, variance, skew, and etc.
Refer to :doc:`owl_stats`.
type histogram = {
bins : float array;
counts : int array;
weighted_counts : float array option;
normalised_counts : float array option;
density : float array option;
}
Refer to :doc:`owl_stats`.
val histogram :
[ `Bins of float array | `N of int ] ->
?weights:float array ->
float array ->
histogram
Refer to :doc:`owl_stats`.
val histogram_sorted :
[ `Bins of float array | `N of int ] ->
?weights:float array ->
float array ->
histogram
Refer to :doc:`owl_stats`.
val pp_hist : Stdlib.Format.formatter -> histogram -> unit
Refer to :doc:`owl_stats`.
val gaussian_kde :
?bandwidth:[ `Silverman | `Scott ] ->
?n_points:int ->
float array ->
float array * float array
Refer to :doc:`owl_stats`.