Class: Distribution

Distribution

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)
Source:

Methods

(abstract) cdf()

The cumulative probability distribution function of the parametrised distribution.
Source:

(abstract) fitData()

Method to fit distribution to data.
Source:

(abstract) isUniquelyDetermined() → {bool}

The distribution is uniquely determined if it has all the parameters it requires to compute all other quantities of interest.
Source:
Returns:
- true if this distribution is uniquely determined, false otherwise
Type
bool