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