@stdlib/stats-kruskal-test 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +6 -6
- package/docs/types/index.d.ts +1 -1
- package/package.json +20 -20
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ var kruskalTest = require( '@stdlib/stats-kruskal-test' );
|
|
|
76
76
|
|
|
77
77
|
#### kruskalTest( a\[,b,...,k]\[, opts] )
|
|
78
78
|
|
|
79
|
-
For input arrays `a`, `b`, ... holding numeric observations, this function calculates the Kruskal-Wallis rank sums test, which tests the null hypothesis that the medians in all `k` groups are the same.
|
|
79
|
+
For input arrays `a`, `b`, ... holding numeric observations, this function calculates the Kruskal-Wallis rank sums test, which tests the null hypothesis that the medians in all `k` groups are the same.
|
|
80
80
|
|
|
81
81
|
```javascript
|
|
82
82
|
// Data from Hollander & Wolfe (1973), p. 116:
|
|
@@ -252,7 +252,7 @@ See [LICENSE][stdlib-license].
|
|
|
252
252
|
|
|
253
253
|
## Copyright
|
|
254
254
|
|
|
255
|
-
Copyright © 2016-
|
|
255
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
256
256
|
|
|
257
257
|
</section>
|
|
258
258
|
|
|
@@ -265,8 +265,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
265
265
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-kruskal-test.svg
|
|
266
266
|
[npm-url]: https://npmjs.org/package/@stdlib/stats-kruskal-test
|
|
267
267
|
|
|
268
|
-
[test-image]: https://github.com/stdlib-js/stats-kruskal-test/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
269
|
-
[test-url]: https://github.com/stdlib-js/stats-kruskal-test/actions/workflows/test.yml?query=branch:v0.2.
|
|
268
|
+
[test-image]: https://github.com/stdlib-js/stats-kruskal-test/actions/workflows/test.yml/badge.svg?branch=v0.2.3
|
|
269
|
+
[test-url]: https://github.com/stdlib-js/stats-kruskal-test/actions/workflows/test.yml?query=branch:v0.2.3
|
|
270
270
|
|
|
271
271
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-kruskal-test/main.svg
|
|
272
272
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-kruskal-test?branch=main
|
|
@@ -278,8 +278,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
278
278
|
|
|
279
279
|
-->
|
|
280
280
|
|
|
281
|
-
[chat-image]: https://img.shields.io/
|
|
282
|
-
[chat-url]: https://
|
|
281
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
282
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
283
283
|
|
|
284
284
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
285
285
|
|
package/docs/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/stats-kruskal-test",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Compute the Kruskal-Wallis test for equal medians.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -30,25 +30,25 @@
|
|
|
30
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@stdlib/array-base-incrspace": "^0.2.
|
|
34
|
-
"@stdlib/assert-has-own-property": "^0.2.
|
|
35
|
-
"@stdlib/assert-is-array": "^0.2.
|
|
36
|
-
"@stdlib/assert-is-boolean": "^0.2.
|
|
37
|
-
"@stdlib/assert-is-collection": "^0.2.
|
|
38
|
-
"@stdlib/assert-is-nan": "^0.2.
|
|
39
|
-
"@stdlib/assert-is-number": "^0.2.
|
|
40
|
-
"@stdlib/assert-is-plain-object": "^0.2.
|
|
41
|
-
"@stdlib/assert-is-positive-integer": "^0.2.
|
|
42
|
-
"@stdlib/math-base-special-pow": "^0.3.
|
|
43
|
-
"@stdlib/math-base-special-roundn": "^0.2.
|
|
44
|
-
"@stdlib/stats-base-dists-chisquare-cdf": "^0.
|
|
45
|
-
"@stdlib/stats-ranks": "^0.2.
|
|
46
|
-
"@stdlib/string-format": "^0.2.
|
|
47
|
-
"@stdlib/utils-count-by": "^0.2.
|
|
48
|
-
"@stdlib/utils-define-read-only-property": "^0.2.
|
|
49
|
-
"@stdlib/utils-identity-function": "^0.2.
|
|
50
|
-
"@stdlib/utils-keys": "^0.2.
|
|
51
|
-
"@stdlib/error-tools-fmtprodmsg": "^0.2.
|
|
33
|
+
"@stdlib/array-base-incrspace": "^0.2.3",
|
|
34
|
+
"@stdlib/assert-has-own-property": "^0.2.3",
|
|
35
|
+
"@stdlib/assert-is-array": "^0.2.3",
|
|
36
|
+
"@stdlib/assert-is-boolean": "^0.2.3",
|
|
37
|
+
"@stdlib/assert-is-collection": "^0.2.3",
|
|
38
|
+
"@stdlib/assert-is-nan": "^0.2.3",
|
|
39
|
+
"@stdlib/assert-is-number": "^0.2.3",
|
|
40
|
+
"@stdlib/assert-is-plain-object": "^0.2.3",
|
|
41
|
+
"@stdlib/assert-is-positive-integer": "^0.2.3",
|
|
42
|
+
"@stdlib/math-base-special-pow": "^0.3.1",
|
|
43
|
+
"@stdlib/math-base-special-roundn": "^0.2.3",
|
|
44
|
+
"@stdlib/stats-base-dists-chisquare-cdf": "^0.3.1",
|
|
45
|
+
"@stdlib/stats-ranks": "^0.2.3",
|
|
46
|
+
"@stdlib/string-format": "^0.2.3",
|
|
47
|
+
"@stdlib/utils-count-by": "^0.2.3",
|
|
48
|
+
"@stdlib/utils-define-read-only-property": "^0.2.3",
|
|
49
|
+
"@stdlib/utils-identity-function": "^0.2.3",
|
|
50
|
+
"@stdlib/utils-keys": "^0.2.3",
|
|
51
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {},
|
|
54
54
|
"engines": {
|