| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Perform a chi-square independence test.
npm install @stdlib/stats-chi2testAlternatively,
The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.
To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
var chi2test = require( '@stdlib/stats-chi2test' );Computes a chi-square independence test for the null hypothesis that the joint distribution of the observed frequencies is the product of the row and column marginals (i.e., that the row and column variables are independent).
// 2x2 contigency table:
var x = [
[ 20, 30 ],
[ 30, 20 ]
];
var res = chi2test( x );
var o = res.toJSON();
/* returns
{
'rejected': false,
'alpha': 0.05,
'pValue': ~0.072,
'df': 1,
'statistic': 3.24,
...
}
*/The function accepts the following options:
By default, the test is performed at a significance level of 0.05. To adjust the significance level, set the alpha option.
var x = [
[ 20, 30 ],
[ 30, 20 ]
];
var opts = {
'alpha': 0.1
};
var res = chi2test( x, opts );
var o = res.toJSON();
/* returns
{
'rejected': true,
'alpha': 0.1,
'pValue': ~0.072,
'df': 1,
'statistic': 3.24,
...
}
*/By default, the function applies Yates' continuity correction for 2x2 contingency tables. To disable the continuity correction, set correct to false.
var x = [
[ 20, 30 ],
[ 30, 20 ]
];
var opts = {
'correct': false
};
var res = chi2test( x, opts );
var o = res.toJSON();
/* returns
{
'rejected': true,
'alpha': 0.05,
'pValue': ~0.046,
'df': 1,
'statistic': 4,
...
}
*/The function returns a results object having the following properties:
To print formatted test output, invoke the toString method. The method accepts the following options:
var x = [
[ 20, 30 ],
[ 30, 20 ]
];
var res = chi2test( x );
var table = res.toString({
'decision': false
});
/* e.g., returns
Chi-square independence test
Null hypothesis: the two variables are independent
pValue: 0.0719
statistic: 3.24
degrees of freedom: 1
*/var array = require( '@stdlib/ndarray-array' );
var chi2test = require( '@stdlib/stats-chi2test' );
/*
* Data from students in grades 4-6 on whether good grades, athletic ability, or popularity are most important to them:
*
* Source: Chase, M.A and Dummer, G.M. (1992), "The Role of Sports as a Social Determinant for Children"
*/
var table = array([
/* Grades Popularity Sports */
[ 63, 31, 25 ], // 4th
[ 88, 55, 33 ], // 5th
[ 96, 55, 32 ] // 6th
]);
// Assess whether the grade level and the students' goals are independent of each other:
var out = chi2test( table );
// returns {...}
console.log( out.toString() );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.
See LICENSE.
Copyright © 2016-2026. The Stdlib Authors.
| Back | FazBrowse Home | New Git URL |