UNPKG

chi-sq-test

Version:

Chi-Squared hypothesis tests to test distribution fitness for dataset and independence among datasets

10 lines (9 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.reducer = exports.throwError = void 0; var throwError = function (msg) { throw new TypeError(msg); }; exports.throwError = throwError; var reducer = function (a, b) { return a + b; }; exports.reducer = reducer;