time-to-botec/squiggle/node_modules/@stdlib/stats/base/dists/chisquare/kurtosis/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

29 lines
473 B
Plaintext

{{alias}}( k )
Returns the excess kurtosis of a chi-squared distribution.
If provided `NaN` as any argument, the function returns `NaN`.
If provided `k <= 0`, the function returns `NaN`.
Parameters
----------
k: number
Degrees of freedom.
Returns
-------
out: number
Excess kurtosis.
Examples
--------
> var v = {{alias}}( 9.0 )
~1.333
> v = {{alias}}( 1.5 )
8.0
See Also
--------