JSPM

@stdlib/stats-base-dists-discrete-uniform-variance

0.0.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 41
  • Score
    100M100P100Q84467F
  • License Apache-2.0

Discrete uniform distribution variance.

Package Exports

  • @stdlib/stats-base-dists-discrete-uniform-variance
  • @stdlib/stats-base-dists-discrete-uniform-variance/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stdlib/stats-base-dists-discrete-uniform-variance) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Variance

NPM version Build Status Coverage Status

Discrete uniform distribution variance.

The variance for a discrete uniform random variable is

Variance for a discrete uniform distribution.

where a is the minimum support and b the maximum support of the distribution.

Installation

npm install @stdlib/stats-base-dists-discrete-uniform-variance

Usage

var variance = require( '@stdlib/stats-base-dists-discrete-uniform-variance' );

variance( a, b )

Returns the variance of a discrete uniform distribution with parameters a (minimum support) and b (maximum support).

var v = variance( 0, 1 );
// returns ~0.25

v = variance( 4, 12 );
// returns ~6.667

v = variance( -4, 4 );
// returns ~6.667

If a or b is not an integer value, the function returns NaN.

var v = variance( 0.1, 2 );
// returns NaN

v = variance( 0, 2.2 );
// returns NaN

v = variance( NaN, 2 );
// returns NaN

v = variance( 2, NaN );
// returns NaN

If provided a > b, the function returns NaN.

var v = variance( 3, 2 );
// returns NaN

v = variance( -1, -2 );
// returns NaN

Examples

var randint = require( '@stdlib/random-base-discrete-uniform' );
var variance = require( '@stdlib/stats-base-dists-discrete-uniform-variance' );

var randa = randint.factory( 0, 10 );
var randb = randint.factory();
var a;
var b;
var v;
var i;

for ( i = 0; i < 10; i++ ) {
    a = randa();
    b = randb( a, a+randa() );
    v = variance( a, b );
    console.log( 'a: %d, b: %d, Var(X;a,b): %d', a.toFixed( 4 ), b.toFixed( 4 ), v.toFixed( 4 ) );
}

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright © 2016-2022. The Stdlib Authors.