@stdlib/stats-kruskal-test 0.0.6 → 0.0.7
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 +23 -2
- package/lib/main.js +1 -1
- package/package.json +2 -2
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# kruskalTest
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Compute the Kruskal-Wallis test for equal medians.
|
|
26
26
|
|
|
@@ -207,6 +207,16 @@ var table = out.print();
|
|
|
207
207
|
|
|
208
208
|
<!-- /.references -->
|
|
209
209
|
|
|
210
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
211
|
+
|
|
212
|
+
<section class="related">
|
|
213
|
+
|
|
214
|
+
</section>
|
|
215
|
+
|
|
216
|
+
<!-- /.related -->
|
|
217
|
+
|
|
218
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
219
|
+
|
|
210
220
|
|
|
211
221
|
<section class="main-repo" >
|
|
212
222
|
|
|
@@ -231,7 +241,7 @@ See [LICENSE][stdlib-license].
|
|
|
231
241
|
|
|
232
242
|
## Copyright
|
|
233
243
|
|
|
234
|
-
Copyright © 2016-
|
|
244
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
235
245
|
|
|
236
246
|
</section>
|
|
237
247
|
|
|
@@ -250,9 +260,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
250
260
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-kruskal-test/main.svg
|
|
251
261
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-kruskal-test?branch=main
|
|
252
262
|
|
|
263
|
+
<!--
|
|
264
|
+
|
|
253
265
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-kruskal-test.svg
|
|
254
266
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-kruskal-test/main
|
|
255
267
|
|
|
268
|
+
-->
|
|
269
|
+
|
|
270
|
+
[umd]: https://github.com/umdjs/umd
|
|
271
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
272
|
+
|
|
273
|
+
[deno-url]: https://github.com/stdlib-js/stats-kruskal-test/tree/deno
|
|
274
|
+
[umd-url]: https://github.com/stdlib-js/stats-kruskal-test/tree/umd
|
|
275
|
+
[esm-url]: https://github.com/stdlib-js/stats-kruskal-test/tree/esm
|
|
276
|
+
|
|
256
277
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
257
278
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
258
279
|
|
package/lib/main.js
CHANGED
|
@@ -29,7 +29,7 @@ var rank = require( '@stdlib/stats-ranks' );
|
|
|
29
29
|
var pow = require( '@stdlib/math-base-special-pow' );
|
|
30
30
|
var chisqCDF = require( '@stdlib/stats-base-dists-chisquare-cdf' );
|
|
31
31
|
var identity = require( '@stdlib/utils-identity-function' );
|
|
32
|
-
var incrspace = require( '@stdlib/array-incrspace' );
|
|
32
|
+
var incrspace = require( '@stdlib/array-base-incrspace' );
|
|
33
33
|
var validate = require( './validate.js' );
|
|
34
34
|
var print = require( './print.js' ); // eslint-disable-line stdlib/no-redeclare
|
|
35
35
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/stats-kruskal-test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Compute the Kruskal-Wallis test for equal medians.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@stdlib/array-incrspace": "^0.0.x",
|
|
40
|
+
"@stdlib/array-base-incrspace": "^0.0.x",
|
|
41
41
|
"@stdlib/assert-has-own-property": "^0.0.x",
|
|
42
42
|
"@stdlib/assert-is-array": "^0.0.x",
|
|
43
43
|
"@stdlib/assert-is-boolean": "^0.0.x",
|