@stdlib/stats-incr-mgrubbs 0.0.5 → 0.0.6
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 +35 -2
- package/package.json +1 -1
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
|
# incrmgrubbs
|
|
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
|
> Moving [Grubbs' test][grubbs-test] for outliers.
|
|
26
26
|
|
|
@@ -255,6 +255,22 @@ for ( i = 0; i < data.length; i++ ) {
|
|
|
255
255
|
|
|
256
256
|
<!-- /.references -->
|
|
257
257
|
|
|
258
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
259
|
+
|
|
260
|
+
<section class="related">
|
|
261
|
+
|
|
262
|
+
* * *
|
|
263
|
+
|
|
264
|
+
## See Also
|
|
265
|
+
|
|
266
|
+
- <span class="package-name">[`@stdlib/stats/incr/grubbs`][@stdlib/stats/incr/grubbs]</span><span class="delimiter">: </span><span class="description">grubbs' test for outliers.</span>
|
|
267
|
+
|
|
268
|
+
</section>
|
|
269
|
+
|
|
270
|
+
<!-- /.related -->
|
|
271
|
+
|
|
272
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
273
|
+
|
|
258
274
|
|
|
259
275
|
<section class="main-repo" >
|
|
260
276
|
|
|
@@ -279,7 +295,7 @@ See [LICENSE][stdlib-license].
|
|
|
279
295
|
|
|
280
296
|
## Copyright
|
|
281
297
|
|
|
282
|
-
Copyright © 2016-
|
|
298
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
283
299
|
|
|
284
300
|
</section>
|
|
285
301
|
|
|
@@ -298,9 +314,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
298
314
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-incr-mgrubbs/main.svg
|
|
299
315
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-incr-mgrubbs?branch=main
|
|
300
316
|
|
|
317
|
+
<!--
|
|
318
|
+
|
|
301
319
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-mgrubbs.svg
|
|
302
320
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-incr-mgrubbs/main
|
|
303
321
|
|
|
322
|
+
-->
|
|
323
|
+
|
|
324
|
+
[umd]: https://github.com/umdjs/umd
|
|
325
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
326
|
+
|
|
327
|
+
[deno-url]: https://github.com/stdlib-js/stats-incr-mgrubbs/tree/deno
|
|
328
|
+
[umd-url]: https://github.com/stdlib-js/stats-incr-mgrubbs/tree/umd
|
|
329
|
+
[esm-url]: https://github.com/stdlib-js/stats-incr-mgrubbs/tree/esm
|
|
330
|
+
|
|
304
331
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
305
332
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
306
333
|
|
|
@@ -316,6 +343,12 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
316
343
|
|
|
317
344
|
[@grubbs:1969a]: https://doi.org/10.1080/00401706.1969.10490657
|
|
318
345
|
|
|
346
|
+
<!-- <related-links> -->
|
|
347
|
+
|
|
348
|
+
[@stdlib/stats/incr/grubbs]: https://www.npmjs.com/package/@stdlib/stats-incr-grubbs
|
|
349
|
+
|
|
350
|
+
<!-- </related-links> -->
|
|
351
|
+
|
|
319
352
|
</section>
|
|
320
353
|
|
|
321
354
|
<!-- /.links -->
|