package prbnmcn-stats

  1. Overview
  2. Docs

Generative distributions.

include Stats_intf.Gen
type parameters = {
  1. nsamples : int;
  2. state : Random.State.t;
}
include Stats_intf.Sampling_monad with type 'a res = parameters -> (module Basic_structures.Basic_intf.Std with type t = 'a) -> ('a, float) Stats_intf.fin_mes
type 'a t = 'a Stats_intf.gen

'a t is the type of computations of type 'a

type 'a res = parameters -> (module Basic_structures.Basic_intf.Std with type t = 'a) -> ('a, float) Stats_intf.fin_mes

'a res is the outcome of running a computation of type 'a

val return : 'a -> 'a t

return x injects a value x as a computation

val bind : 'a t -> ('a -> 'b t) -> 'b t

Monadic bind

val map : 'a t -> ('a -> 'b) -> 'b t

Functorial map

val run : 'a t -> 'a res

Running a monadic computation

module Infix : sig ... end
val float : float -> float t

float bound samples uniformly in 0; bound

val int : int -> int t

int bound samples uniformly in 0; bound-1

val bool : bool t

bool samples a boolean uniformly

val uniform : 'a array -> 'a t

uniform elts samples an element of the elts array by sampling an index uniformly.

val bernouilli : float -> bool t

bernouilli alpha samples true with probability alpha.

val geometric : float -> int t

geometric p samples a nonnegative integer according to the geometric law of parameter p.

val subsample : n:int -> 'a t -> 'a t

subsample ~n gen samples one out of n samples from gen.

val of_empirical : 'a Stats_intf.emp -> 'a t

of_empirical emp samples from emp matching exactly the empirical frequencies.

val exponential : rate:float -> float t

Exponential distribution via inverse CDF.

val box_muller : mean:float -> std:float -> (float * float) t

Gaussian distribution via Box-Muller transform. Returns a pair of independent gaussian variates with prescribed mean and standard deviation.

val gaussian : mean:float -> std:float -> float t

Gaussian distribution (wrapper over box-muller transform).

val poisson : lambda:float -> int t

Poisson distribution via inverse transform. Consider using other methods for large lambda.

val range : Stats_intf.range -> float t

Samples uniformly in the given range.

val categorical : ('a * float) list -> 'a t

Categorical distribution. Total mass need not be one. Does not aggregate mass of equal elements.

  • raises Invalid_argument

    if some weights are negative or if the total mass is zero.

val of_fin_mes : ('a, float) Stats_intf.fin_mes -> 'a t

Constructs a sampler from a finite measure through categorical. NB: this is mostly useful for sampling repeatedly from the distribution.

module Rational : sig ... end
OCaml

Innovation. Community. Security.