time-to-botec/js/node_modules/@stdlib/stats/base/dists/t/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

31 lines
546 B
Plaintext

{{alias}}( v )
Returns the excess kurtosis of a Student's t distribution.
If provided `NaN` as any argument, the function returns `NaN`.
If provided `v <= 2`, the function returns `NaN`.
If provided `2 < v <= 4`, the function returns positive infinity.
Parameters
----------
v: number
Degrees of freedom.
Returns
-------
out: number
Excess kurtosis.
Examples
--------
> var v = {{alias}}( 11.0 )
~0.857
> v = {{alias}}( 4.5 )
12.0
See Also
--------