1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
{{alias}}( [μ, σ] )
Returns a normal distribution object.
Parameters
----------
μ: number (optional)
Mean parameter. Default: `0.0`.
σ: number (optional)
Standard deviation. Must be greater than `0`. Default: `1.0`.
Returns
-------
normal: Object
Distribution instance.
normal.mu: number
Mean parameter.
normal.sigma: number
Standard deviation. If set, the value must be greater than `0`.
normal.entropy: number
Read-only property which returns the differential entropy.
normal.kurtosis: number
Read-only property which returns the excess kurtosis.
normal.mean: number
Read-only property which returns the expected value.
normal.median: number
Read-only property which returns the median.
normal.mode: number
Read-only property which returns the mode.
normal.skewness: number
Read-only property which returns the skewness.
normal.stdev: number
Read-only property which returns the standard deviation.
normal.variance: number
Read-only property which returns the variance.
normal.cdf: Function
Evaluates the cumulative distribution function (CDF).
normal.logpdf: Function
Evaluates the natural logarithm of the probability density function
(PDF).
normal.mgf: Function
Evaluates the moment-generating function (MGF).
normal.pdf: Function
Evaluates the probability density function (PDF).
normal.quantile: Function
Evaluates the quantile function at probability `p`.
Examples
--------
> var normal = {{alias}}( -2.0, 3.0 );
> normal.mu
-2.0
> normal.sigma
3.0
> normal.entropy
~2.518
> normal.kurtosis
0.0
> normal.mean
-2.0
> normal.median
-2.0
> normal.mode
-2.0
> normal.skewness
0.0
> normal.stdev
3.0
> normal.variance
9.0
> normal.cdf( 0.8 )
~0.825
> normal.logpdf( 2.0 )
~-2.9
> normal.mgf( 0.2 )
~0.803
> normal.pdf( 2.0 )
~0.055
> normal.quantile( 0.9 )
~1.845
See Also
--------
|