@stdlib/stats-incr-mape 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 +44 -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
|
# incrmape
|
|
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 percentage error][mean-absolute-percentage-error] (MAPE) incrementally.
|
|
26
26
|
|
|
@@ -140,6 +140,25 @@ console.log( accumulator() );
|
|
|
140
140
|
|
|
141
141
|
<!-- /.examples -->
|
|
142
142
|
|
|
143
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
144
|
+
|
|
145
|
+
<section class="related">
|
|
146
|
+
|
|
147
|
+
* * *
|
|
148
|
+
|
|
149
|
+
## See Also
|
|
150
|
+
|
|
151
|
+
- <span class="package-name">[`@stdlib/stats/incr/maape`][@stdlib/stats/incr/maape]</span><span class="delimiter">: </span><span class="description">compute the mean arctangent absolute percentage error (MAAPE) incrementally.</span>
|
|
152
|
+
- <span class="package-name">[`@stdlib/stats/incr/mae`][@stdlib/stats/incr/mae]</span><span class="delimiter">: </span><span class="description">compute the mean absolute error (MAE) incrementally.</span>
|
|
153
|
+
- <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>
|
|
154
|
+
- <span class="package-name">[`@stdlib/stats/incr/mmape`][@stdlib/stats/incr/mmape]</span><span class="delimiter">: </span><span class="description">compute a moving mean absolute percentage error (MAPE) incrementally.</span>
|
|
155
|
+
|
|
156
|
+
</section>
|
|
157
|
+
|
|
158
|
+
<!-- /.related -->
|
|
159
|
+
|
|
160
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
161
|
+
|
|
143
162
|
|
|
144
163
|
<section class="main-repo" >
|
|
145
164
|
|
|
@@ -164,7 +183,7 @@ See [LICENSE][stdlib-license].
|
|
|
164
183
|
|
|
165
184
|
## Copyright
|
|
166
185
|
|
|
167
|
-
Copyright © 2016-
|
|
186
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
168
187
|
|
|
169
188
|
</section>
|
|
170
189
|
|
|
@@ -183,9 +202,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
183
202
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-incr-mape/main.svg
|
|
184
203
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-incr-mape?branch=main
|
|
185
204
|
|
|
205
|
+
<!--
|
|
206
|
+
|
|
186
207
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-mape.svg
|
|
187
208
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-incr-mape/main
|
|
188
209
|
|
|
210
|
+
-->
|
|
211
|
+
|
|
212
|
+
[umd]: https://github.com/umdjs/umd
|
|
213
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
214
|
+
|
|
215
|
+
[deno-url]: https://github.com/stdlib-js/stats-incr-mape/tree/deno
|
|
216
|
+
[umd-url]: https://github.com/stdlib-js/stats-incr-mape/tree/umd
|
|
217
|
+
[esm-url]: https://github.com/stdlib-js/stats-incr-mape/tree/esm
|
|
218
|
+
|
|
189
219
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
190
220
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
191
221
|
|
|
@@ -197,6 +227,18 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
197
227
|
|
|
198
228
|
[mean-absolute-percentage-error]: https://en.wikipedia.org/wiki/Mean_absolute_percentage_error
|
|
199
229
|
|
|
230
|
+
<!-- <related-links> -->
|
|
231
|
+
|
|
232
|
+
[@stdlib/stats/incr/maape]: https://www.npmjs.com/package/@stdlib/stats-incr-maape
|
|
233
|
+
|
|
234
|
+
[@stdlib/stats/incr/mae]: https://www.npmjs.com/package/@stdlib/stats-incr-mae
|
|
235
|
+
|
|
236
|
+
[@stdlib/stats/incr/mean]: https://www.npmjs.com/package/@stdlib/stats-incr-mean
|
|
237
|
+
|
|
238
|
+
[@stdlib/stats/incr/mmape]: https://www.npmjs.com/package/@stdlib/stats-incr-mmape
|
|
239
|
+
|
|
240
|
+
<!-- </related-links> -->
|
|
241
|
+
|
|
200
242
|
</section>
|
|
201
243
|
|
|
202
244
|
<!-- /.links -->
|