1.0.5 • Published 3 years ago

chi-square-p-value v1.0.5

Weekly downloads
42
License
GPL
Repository
github
Last release
3 years ago

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);