@stdlib/stats-incr-mae 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 +44 -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
  # incrmae
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 [mean absolute error][mean-absolute-error] (MAE) incrementally.
26
26
 
@@ -133,6 +133,25 @@ console.log( accumulator() );
133
133
 
134
134
  <!-- /.examples -->
135
135
 
136
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
137
+
138
+ <section class="related">
139
+
140
+ * * *
141
+
142
+ ## See Also
143
+
144
+ - <span class="package-name">[`@stdlib/stats/incr/mape`][@stdlib/stats/incr/mape]</span><span class="delimiter">: </span><span class="description">compute the mean absolute percentage error (MAPE) incrementally.</span>
145
+ - <span class="package-name">[`@stdlib/stats/incr/me`][@stdlib/stats/incr/me]</span><span class="delimiter">: </span><span class="description">compute the mean error (ME) incrementally.</span>
146
+ - <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>
147
+ - <span class="package-name">[`@stdlib/stats/incr/mmae`][@stdlib/stats/incr/mmae]</span><span class="delimiter">: </span><span class="description">compute a moving mean absolute error (MAE) incrementally.</span>
148
+
149
+ </section>
150
+
151
+ <!-- /.related -->
152
+
153
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
154
+
136
155
 
137
156
  <section class="main-repo" >
138
157
 
@@ -157,7 +176,7 @@ See [LICENSE][stdlib-license].
157
176
 
158
177
  ## Copyright
159
178
 
160
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
179
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
161
180
 
162
181
  </section>
163
182
 
@@ -176,9 +195,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
176
195
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-incr-mae/main.svg
177
196
  [coverage-url]: https://codecov.io/github/stdlib-js/stats-incr-mae?branch=main
178
197
 
198
+ <!--
199
+
179
200
  [dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-mae.svg
180
201
  [dependencies-url]: https://david-dm.org/stdlib-js/stats-incr-mae/main
181
202
 
203
+ -->
204
+
205
+ [umd]: https://github.com/umdjs/umd
206
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
207
+
208
+ [deno-url]: https://github.com/stdlib-js/stats-incr-mae/tree/deno
209
+ [umd-url]: https://github.com/stdlib-js/stats-incr-mae/tree/umd
210
+ [esm-url]: https://github.com/stdlib-js/stats-incr-mae/tree/esm
211
+
182
212
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
183
213
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
184
214
 
@@ -190,6 +220,18 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
190
220
 
191
221
  [mean-absolute-error]: https://en.wikipedia.org/wiki/Mean_absolute_error
192
222
 
223
+ <!-- <related-links> -->
224
+
225
+ [@stdlib/stats/incr/mape]: https://www.npmjs.com/package/@stdlib/stats-incr-mape
226
+
227
+ [@stdlib/stats/incr/me]: https://www.npmjs.com/package/@stdlib/stats-incr-me
228
+
229
+ [@stdlib/stats/incr/mean]: https://www.npmjs.com/package/@stdlib/stats-incr-mean
230
+
231
+ [@stdlib/stats/incr/mmae]: https://www.npmjs.com/package/@stdlib/stats-incr-mmae
232
+
233
+ <!-- </related-links> -->
234
+
193
235
  </section>
194
236
 
195
237
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/stats-incr-mae",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Compute the mean absolute error (MAE) incrementally.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {