UNPKG

@stdlib/stats

Version:

Standard library statistical functions.

34 lines (24 loc) 574 B
{{alias}}( d1, d2 ) Returns the skewness of an F distribution. If `d1 <= 0` or `d2 <= 6`, the function returns `NaN`. If `d1` or `d2` is `NaN`, the function returns `NaN`. Parameters ---------- d1: number Numerator degrees of freedom. d2: number Denominator degrees of freedom. Returns ------- out: number Skewness. Examples -------- > var v = {{alias}}( 3.0, 7.0 ) 11.0 > v = {{alias}}( 4.0, 12.0 ) ~3.207 > v = {{alias}}( 8.0, 7.0 ) ~10.088 See Also --------