@stdlib/stats-base-dists-hypergeometric-logpmf
v0.1.3
Published
Natural logarithm of the probability mass function (PMF) for a hypergeometric distribution.
Readme
Logarithm of Probability Mass Function
Evaluate the natural logarithm of the probability mass function (PMF) for a hypergeometric distribution.
Imagine a scenario with a population of size N, of which a subpopulation of size K can be considered successes. We draw n observations from the total population. Defining the random variable X as the number of successes in the n draws, X is said to follow a hypergeometric distribution. The probability mass function (PMF) for a hypergeometric random variable is given by
Installation
npm install @stdlib/stats-base-dists-hypergeometric-logpmfUsage
var logpmf = require( '@stdlib/stats-base-dists-hypergeometric-logpmf' );logpmf( x, N, K, n )
Evaluates the natural logarithm of the probability mass function (PMF) for a hypergeometric distribution with parameters N (population size), K (subpopulation size), and n (number of draws).
var y = logpmf( 1.0, 8, 4, 2 );
// returns ~-0.56
y = logpmf( 2.0, 8, 4, 2 );
// returns ~-1.54
y = logpmf( 0.0, 8, 4, 2 );
// returns ~-1.54
y = logpmf( 1.5, 8, 4, 2 );
// returns -InfinityIf provided NaN as any argument, the function returns NaN.
var y = logpmf( NaN, 10, 5, 2 );
// returns NaN
y = logpmf( 0.0, NaN, 5, 2 );
// returns NaN
y = logpmf( 0.0, 10, NaN, 2 );
// returns NaN
y = logpmf( 0.0, 10, 5, NaN );
// returns NaNIf provided a population size N, subpopulation size K, or draws n which is not a nonnegative integer, the function returns NaN.
var y = logpmf( 2.0, 10.5, 5, 2 );
// returns NaN
y = logpmf( 2.0, 10, 1.5, 2 );
// returns NaN
y = logpmf( 2.0, 10, 5, -2.0 );
// returns NaNIf the number of draws n or the subpopulation size K exceed population size N, the function returns NaN.
var y = logpmf( 2.0, 10, 5, 12 );
// returns NaN
y = logpmf( 2.0, 8, 3, 9 );
// returns NaNlogpmf.factory( N, K, n )
Returns a function for evaluating the natural logarithm of the probability mass function (PMF) of a hypergeometric distribution with parameters N (population size), K (subpopulation size), and n (number of draws).
var mylogpmf = logpmf.factory( 30, 20, 5 );
var y = mylogpmf( 4.0 );
// returns ~-1.079
y = mylogpmf( 1.0 );
// returns ~-3.524Examples
var randu = require( '@stdlib/random-base-randu' );
var round = require( '@stdlib/math-base-special-round' );
var logpmf = require( '@stdlib/stats-base-dists-hypergeometric-logpmf' );
var i;
var N;
var K;
var n;
var x;
var y;
for ( i = 0; i < 10; i++ ) {
x = round( randu() * 5.0 );
N = round( randu() * 20.0 );
K = round( randu() * N );
n = round( randu() * N );
y = logpmf( x, N, K, n );
console.log( 'x: %d, N: %d, K: %d, n: %d, ln(P(X=x;N,K,n)): %d', x, N, K, n, y.toFixed( 4 ) );
}C APIs
Usage
#include "stdlib/stats/base/dists/hypergeometric/logpmf.h"stdlib_base_dists_hypergeometric_logpmf( x, N, K, n )
Evaluates the natural logarithm of the probability mass function (PMF) for a hypergeometric distribution with parameters N (population size), K (subpopulation size), and n (number of draws).
double out = stdlib_base_dists_hypergeometric_logpmf( 1.0, 8, 4, 2 );
// returns ~-0.56The function accepts the following arguments:
- x:
[in] doubleinput value. - N:
[in] int32_tpopulation size. - K:
[in] int32_tsubpopulation size. - n:
[in] int32_tnumber of draws.
double stdlib_base_dists_hypergeometric_logpmf( const double x, const int32_t N, const int32_t K, const int32_t n );Examples
#include "stdlib/stats/base/dists/hypergeometric/logpmf.h"
#include "stdlib/math/base/special/round.h"
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
static double random_uniform( const double min, const double max ) {
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
return min + ( v * ( max - min ) );
}
int main( void ) {
int32_t N;
int32_t K;
int32_t n;
double y;
double x;
int i;
for ( i = 0; i < 10; i++ ) {
x = stdlib_base_round( random_uniform( 0.0, 5.0 ) );
N = stdlib_base_round( random_uniform( 0.0, 20.0 ) );
K = stdlib_base_round( random_uniform( 0.0, N ) );
n = stdlib_base_round( random_uniform( 0.0, N ) );
y = stdlib_base_dists_hypergeometric_logpmf( x, N, K, n );
printf( "x: %lf, N: %d, K: %d, n: %d, ln(P(X=x;N,K,n)): %lf\n", x, N, K, n, y );
}
}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
License
See LICENSE.
Copyright
Copyright © 2016-2026. The Stdlib Authors.
