Owl_base_statsStatistics: 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 ->
histogramRefer to :doc:`owl_stats`.
val histogram_sorted :
[ `Bins of float array | `N of int ] ->
?weights:float array ->
float array ->
histogramRefer to :doc:`owl_stats`.
val pp_hist : Stdlib.Format.formatter -> histogram -> unitRefer to :doc:`owl_stats`.
val gaussian_kde :
?bandwidth:[ `Silverman | `Scott ] ->
?n_points:int ->
float array ->
float array * float arrayRefer to :doc:`owl_stats`.