@stdlib/stats
Version:
Standard library statistical functions.
39 lines (29 loc) • 691 B
Plain Text
{{alias}}( μ, β )
Returns the skewness of a Gumbel distribution with location parameter `μ`
and scale parameter `β`.
If provided `NaN` as any argument, the function returns `NaN`.
If provided `β <= 0`, the function returns `NaN`.
Parameters
----------
μ: number
Location parameter.
β: number
Scale parameter.
Returns
-------
out: number
Skewness.
Examples
--------
> var y = {{alias}}( 0.0, 1.0 )
~1.14
> y = {{alias}}( 4.0, 2.0 )
~1.14
> y = {{alias}}( NaN, 1.0 )
NaN
> y = {{alias}}( 0.0, NaN )
NaN
> y = {{alias}}( 0.0, 0.0 )
NaN
See Also
--------