Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

chi-square-p-value

mohamedfasil98GPL1.0.5

Find Chi Square, P-value, Degree of Freedom, adjusted residual values of a contingency Table ie, two dimensional array

chi, square, p-value, p, value, degree, of, freedom, statistics, contingency, table

readme

chi-square-p-value

npm version

Find Chi Square, P-value, Degree of Freedom of a contingency Table ie, two dimensional array

A working sample can be seen here http://statpages.info/chisq.html

Usage

npm install chi-square-p-value

In your file

import Analyse from 'chi-square-p-value';

const contingencyTable = [
    [23, 126],
    [3, 8],
    [1, 6],
    [2, 0]
];

/****
* chi - Chi Square value
* df - Degree of Freedom
* pValue - P Value
* residual - Adjusted Residual values of array
***/

const { chi, df, pValue, residual } = Analyse(contingencyTable);