statistics-0.11.0.2: A library of statistical types, data, and functions

Portabilityportable
Stabilityexperimental
Maintainerbos@serpentine.com
Safe HaskellNone

Statistics.Distribution.Exponential

Contents

Description

The exponential distribution. This is the continunous probability distribution of the times between events in a poisson process, in which events occur continuously and independently at a constant average rate.

Synopsis

Documentation

Constructors

exponentialSource

Arguments

:: Double

λ (scale) parameter.

-> ExponentialDistribution 

Create an exponential distribution.

exponentialFromSample :: Sample -> ExponentialDistributionSource

Create exponential distribution from sample. No tests are made to check whether it truly is exponential.

Accessors