Skewness

Fréchet distribution skewness.

The skewness for a Fréchet random variable shape α > 0, scale s > 0, and location parameter m is

s k e w equals StartLayout Enlarged left-brace 1st Row 1st Column StartStartFraction normal upper Gamma left-parenthesis 1 minus StartFraction 3 Over alpha EndFraction right-parenthesis minus 3 normal upper Gamma left-parenthesis 1 minus StartFraction 2 Over alpha EndFraction right-parenthesis normal upper Gamma left-parenthesis 1 minus StartFraction 1 Over alpha EndFraction right-parenthesis plus 2 normal upper Gamma cubed left-parenthesis 1 minus StartFraction 1 Over alpha EndFraction right-parenthesis OverOver StartRoot left-parenthesis normal upper Gamma left-parenthesis 1 minus StartFraction 2 Over alpha EndFraction right-parenthesis minus normal upper Gamma squared left-parenthesis 1 minus StartFraction 1 Over alpha EndFraction right-parenthesis right-parenthesis cubed EndRoot EndEndFraction 2nd Column for alpha greater-than 3 2nd Row 1st Column normal infinity 2nd Column otherwise EndLayout

where Γ is the gamma function.

Usage

var skewness = require( '@stdlib/stats/base/dists/frechet/skewness' );

skewness( alpha, s, m )

Returns the skewness for a Fréchet distribution with shape alpha > 0, scale s > 0, and location parameter m.

var y = skewness( 4.0, 1.0, 1.0 );
// returns ~5.605

y = skewness( 4.0, 8.0, -3.0 );
// returns ~5.605

y = skewness( 5.0, 1.0, 2.0 );
// returns ~3.535

If 0 < alpha <= 3, the function returns +Infinity.

var y = skewness( 2.5, 1.0, 1.0 );
// returns Infinity

If provided NaN as any argument, the function returns NaN.

var y = skewness( NaN, 1.0, -2.0 );
// returns NaN

y = skewness( 1.0, NaN, -2.0 );
// returns NaN

y = skewness( 1.0, 1.0, NaN );
// returns NaN

If provided alpha <= 0, the function returns NaN.

var y = skewness( 0.0, 3.0, 2.0 );
// returns NaN

y = skewness( -1.0, 3.0, 2.0 );
// returns NaN

If provided s <= 0, the function returns NaN.

var y = skewness( 1.0, 0.0, 2.0 );
// returns NaN

y = skewness( 1.0, -1.0, 2.0 );
// returns NaN

Examples

var randu = require( '@stdlib/random/base/randu' );
var EPS = require( '@stdlib/constants/float64/eps' );
var skewness = require( '@stdlib/stats/base/dists/frechet/skewness' );

var alpha;
var m;
var s;
var y;
var i;

for ( i = 0; i < 10; i++ ) {
    alpha = ( randu()*20.0 ) + EPS;
    s = ( randu()*20.0 ) + EPS;
    m = ( randu()*20.0 ) - 40.0;
    y = skewness( alpha, s, m );
    console.log( 'α: %d, s: %d, m: %d, skew(X;α,s,m): %d', alpha.toFixed( 4 ), s.toFixed( 4 ), m.toFixed( 4 ), y.toFixed( 4 ) );
}
Did you find this page helpful?