@stdlib/stats-incr-meanabs 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.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +41 -2
  3. package/package.json +1 -1
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
1
+ Copyright (c) 2016-2022 The Stdlib Authors.
package/README.md CHANGED
@@ -20,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # incrmeanabs
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 an [arithmetic mean][arithmetic-mean] of absolute values incrementally.
26
26
 
@@ -130,6 +130,24 @@ console.log( accumulator() );
130
130
 
131
131
  <!-- /.examples -->
132
132
 
133
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
134
+
135
+ <section class="related">
136
+
137
+ * * *
138
+
139
+ ## See Also
140
+
141
+ - <span class="package-name">[`@stdlib/stats/incr/mean`][@stdlib/stats/incr/mean]</span><span class="delimiter">: </span><span class="description">compute an arithmetic mean incrementally.</span>
142
+ - <span class="package-name">[`@stdlib/stats/incr/mmeanabs`][@stdlib/stats/incr/mmeanabs]</span><span class="delimiter">: </span><span class="description">compute a moving arithmetic mean of absolute values incrementally.</span>
143
+ - <span class="package-name">[`@stdlib/stats/incr/sumabs`][@stdlib/stats/incr/sumabs]</span><span class="delimiter">: </span><span class="description">compute a sum of absolute values incrementally.</span>
144
+
145
+ </section>
146
+
147
+ <!-- /.related -->
148
+
149
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
150
+
133
151
 
134
152
  <section class="main-repo" >
135
153
 
@@ -154,7 +172,7 @@ See [LICENSE][stdlib-license].
154
172
 
155
173
  ## Copyright
156
174
 
157
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
175
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
158
176
 
159
177
  </section>
160
178
 
@@ -173,9 +191,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
173
191
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-incr-meanabs/main.svg
174
192
  [coverage-url]: https://codecov.io/github/stdlib-js/stats-incr-meanabs?branch=main
175
193
 
194
+ <!--
195
+
176
196
  [dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-meanabs.svg
177
197
  [dependencies-url]: https://david-dm.org/stdlib-js/stats-incr-meanabs/main
178
198
 
199
+ -->
200
+
201
+ [umd]: https://github.com/umdjs/umd
202
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
203
+
204
+ [deno-url]: https://github.com/stdlib-js/stats-incr-meanabs/tree/deno
205
+ [umd-url]: https://github.com/stdlib-js/stats-incr-meanabs/tree/umd
206
+ [esm-url]: https://github.com/stdlib-js/stats-incr-meanabs/tree/esm
207
+
179
208
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
180
209
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
181
210
 
@@ -187,6 +216,16 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
187
216
 
188
217
  [arithmetic-mean]: https://en.wikipedia.org/wiki/Arithmetic_mean
189
218
 
219
+ <!-- <related-links> -->
220
+
221
+ [@stdlib/stats/incr/mean]: https://www.npmjs.com/package/@stdlib/stats-incr-mean
222
+
223
+ [@stdlib/stats/incr/mmeanabs]: https://www.npmjs.com/package/@stdlib/stats-incr-mmeanabs
224
+
225
+ [@stdlib/stats/incr/sumabs]: https://www.npmjs.com/package/@stdlib/stats-incr-sumabs
226
+
227
+ <!-- </related-links> -->
228
+
190
229
  </section>
191
230
 
192
231
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/stats-incr-meanabs",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Compute an arithmetic mean of absolute values incrementally.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {