deno.land / x / simplestatistic@v7.7.1 / test / sample_skewness.test.js

sample_skewness.test.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* eslint no-shadow: 0 */
const test = require("tap").test;const ss = require("../");
test("sample skewness", function (t) { t.test("the skewness of an empty sample is null", function (t) { const data = []; t.throws(function () { ss.sampleSkewness(data); }); t.end(); });
t.test("the skewness of an sample with one number is null", function (t) { const data = [1]; t.throws(function () { ss.sampleSkewness(data); }); t.end(); });
t.test("the skewness of an sample with two numbers is null", function (t) { const data = [1, 2]; t.throws(function () { ss.sampleSkewness(data); }); t.end(); });
t.test("can calculate the skewness of SAS example 1", function (t) { // Data and answer taken from SKEWNESS function documentation at // http://support.sas.com/documentation/c../lrdict/64316/HTML/default/viewer.htm#a000245947.htm const data = [0, 1, 1]; t.equal(+ss.sampleSkewness(data).toPrecision(10), -1.732050808); t.end(); });
t.test("can calculate the skewness of SAS example 2", function (t) { // Data and answer taken from SKEWNESS function documentation at // http://support.sas.com/documentation/c../lrdict/64316/HTML/default/viewer.htm#a000245947.htm const data = [2, 4, 6, 3, 1]; t.equal(+ss.sampleSkewness(data).toPrecision(10), 0.5901286564); t.end(); });
t.test("can calculate the skewness of SAS example 3", function (t) { // Data and answer taken from SKEWNESS function documentation at // http://support.sas.com/documentation/c../lrdict/64316/HTML/default/viewer.htm#a000245947.htm const data = [2, 0, 0]; t.equal(+ss.sampleSkewness(data).toPrecision(10), 1.732050808); t.end(); }); t.end();});
simplestatistic

Version Info

Tagged at
2 years ago