time-to-botec/squiggle/node_modules/@stdlib/stats/base/dists/poisson/skewness
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
docs feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Skewness

Poisson distribution skewness.

The skewness for a Poisson random variable is

Skewness for a Poisson distribution.

where λ is the mean parameter.

Usage

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

skewness( lambda )

Returns the skewness of a Poisson distribution with mean parameter lambda.

var v = skewness( 9.0 );
// returns ~0.333

v = skewness( 0.5 );
// returns ~1.414

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

var v = skewness( -1.0 );
// returns NaN

Examples

var randu = require( '@stdlib/random/base/randu' );
var round = require( '@stdlib/math/base/special/round' );
var skewness = require( '@stdlib/stats/base/dists/poisson/skewness' );

var lambda;
var v;
var i;

for ( i = 0; i < 10; i++ ) {
    lambda = randu() * 20.0;
    v = skewness( lambda );
    console.log( 'λ: %d, skew(X;λ): %d', lambda.toFixed( 4 ), v.toFixed( 4 ) );
}