0.1.1 • Published 2 months ago

@stdlib/stats-base-dists-studentized-range-quantile v0.1.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months ago

Quantile Function

NPM version Build Status Coverage Status

Studentized range distribution quantile function.

Installation

npm install @stdlib/stats-base-dists-studentized-range-quantile

Usage

var quantile = require( '@stdlib/stats-base-dists-studentized-range-quantile' );

quantile( p, r, v[, nranges=1] )

Evaluates the quantile function for a studentized range distribution with sample size r and v degrees of freedom. Optionally. Optionally, the number of groups whose maximum range is considered can be specified via the nranges parameter.

var y = quantile( 0.5, 3.0, 2.0 );
// returns ~0.0644

y = quantile( 0.9, 17.0, 2.0 );
// returns ~0.913

y = quantile( 0.5, 3.0, 2.0, 2 );
// returns ~0.01

If provided a probability p outside the interval [0,1], the function returns NaN.

var y = quantile( 1.9, 3.0, 2.0 );
// returns NaN

y = quantile( -0.1, 3.0, 2.0 );
// returns NaN

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

var y = quantile( NaN, 2.0, 2.0 );
// returns NaN

y = quantile( 0.0, NaN, 2.0 );
// returns NaN

If provided v < 2 or r < 2, the function returns NaN.

var y = quantile( 0.4, -1.0, 3.0 );
// returns NaN

y = quantile( 0.4, 3.0, 1.5 );
// returns NaN

quantile.factory( r, v[, nranges=1] )

Returns a function for evaluating the quantile function of an studentized range distribution with sample size r and v degrees of freedom. Optionally, the number of groups whose maximum range is considered can be specified via the nranges parameter.

var myquantile = quantile.factory( 4.0 );

var y = myquantile( 0.2 );
// returns ~-0.941

y = myquantile( 0.9 );
// returns ~1.533

Examples

var randu = require( '@stdlib/random-base-randu' );
var quantile = require( '@stdlib/stats-base-dists-studentized-range-quantile' );

var v;
var r;
var p;
var y;
var i;

for ( i = 0; i < 10; i++ ) {
    p = randu();
    r = ( randu() * 20.0 ) + 2.0;
    v = ( randu() * 20.0 ) + 2.0;
    y = quantile( p, r, v );
    console.log( 'p: %d, r: %d, v: %d, Q(p;r,v): %d', p.toFixed( 4 ), r.toFixed( 4 ), v.toFixed( 4 ), y.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

Copyright © 2016-2024. The Stdlib Authors.