atoti.experimental.stats.normal module#
Normal distribution, also called Gaussian, Gauss or Laplace–Gauss distribution.
For more information read:
- atoti.experimental.stats.normal.cdf(point, /, *, mean, standard_deviation)#
Cumulative distribution function for a normal distribution.
The cdf is given by the formula
Where
is the mean of the distribution, is its standard deviation and the error function.- Parameters
point (NonConstantMeasureConvertible) – The point where the function is evaluated.
mean (NumericMeasureConvertible) – The mean value of the distribution.
standard_deviation (NumericMeasureConvertible) – The standard deviation of the distribution. Must be positive.
- Return type
MeasureDescription
See also
cdf of a normal distribution on Wikipedia
- atoti.experimental.stats.normal.pdf(point, /, *, mean=0, standard_deviation=1)#
Probability density function for a normal distribution.
The pdf is given by the formula
Where
is the mean (or expectation) of the distribution while is its standard deviation.- Parameters
point (NonConstantMeasureConvertible) – The point where the function is evaluated.
mean (NumericMeasureConvertible) – The mean value of the distribution.
standard_deviation (NumericMeasureConvertible) – The standard deviation of the distribution. Must be positive.
- Return type
MeasureDescription
See also
General normal distribution on Wikipedia.
- atoti.experimental.stats.normal.ppf(point, /, *, mean, standard_deviation)#
Percent point function for a normal distribution.
Also called inverse cumulative distribution function.
The ppf is given by the formula
Where
is the mean of the distribution, is its standard deviation and the inverse of the error function.- Parameters
point (NonConstantMeasureConvertible) – The point where the function is evaluated.
mean (NumericMeasureConvertible) – The mean value of the distribution.
standard_deviation (NumericMeasureConvertible) – The standard deviation of the distribution. Must be positive.
- Return type
MeasureDescription
See also
Quantile function of a normal distribution on Wikipedia