Skip to main content
Module

x/simplestatistics/test/add_to_mean.test.js

simple statistics for node & browser javascript
Go to Latest
File
/* eslint no-shadow: 0 */
const test = require("tap").test;const ss = require("../dist/simple-statistics.js");
test("addToMean", function (t) { t.test("can get add a single value to a mean", function (t) { const values = [13, 14, 15, 8, 20]; t.equal(ss.addToMean(ss.mean(values), values.length, 53), 20.5); t.equal( ss.addToMean(ss.mean(values), values.length, 53), ss.mean(values.concat(53)) ); t.end(); }); t.end();});