new Distribution(meanopt, varianceopt)
The abstract base class that represents a particular instance of a distribution
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
mean |
float |
<optional> |
The mean of the distribution (if it has one) |
variance |
float |
<optional> |
The variance of the distribution (if it has one) |
Methods
(abstract) cdf()
The cumulative probability distribution function of the parametrised distribution.
(abstract) fitData()
Method to fit distribution to data.
(abstract) isUniquelyDetermined() → {bool}
The distribution is uniquely determined if it has all the parameters it
requires to compute all other quantities of interest.
Returns:
- true if this distribution is uniquely determined, false otherwise
- Type
- bool