@stdlib/stats-iter-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.
- package/NOTICE +1 -1
- package/README.md +39 -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
|
# itermeanabs
|
|
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 [arithmetic mean][arithmetic-mean] of absolute values for all [iterated][mdn-iterator-protocol] values.
|
|
26
26
|
|
|
@@ -127,6 +127,22 @@ console.log( 'meanabs: %d.', m );
|
|
|
127
127
|
|
|
128
128
|
<!-- /.references -->
|
|
129
129
|
|
|
130
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
131
|
+
|
|
132
|
+
<section class="related">
|
|
133
|
+
|
|
134
|
+
* * *
|
|
135
|
+
|
|
136
|
+
## See Also
|
|
137
|
+
|
|
138
|
+
- <span class="package-name">[`@stdlib/stats/iter/mean`][@stdlib/stats/iter/mean]</span><span class="delimiter">: </span><span class="description">compute the arithmetic mean over all iterated values.</span>
|
|
139
|
+
- <span class="package-name">[`@stdlib/stats/iter/mmeanabs`][@stdlib/stats/iter/mmeanabs]</span><span class="delimiter">: </span><span class="description">create an iterator which iteratively computes a moving arithmetic mean of absolute values.</span>
|
|
140
|
+
- <span class="package-name">[`@stdlib/stats/iter/sumabs`][@stdlib/stats/iter/sumabs]</span><span class="delimiter">: </span><span class="description">compute the sum of absolute values for all iterated values.</span>
|
|
141
|
+
|
|
142
|
+
</section>
|
|
143
|
+
|
|
144
|
+
<!-- /.related -->
|
|
145
|
+
|
|
130
146
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
131
147
|
|
|
132
148
|
|
|
@@ -153,7 +169,7 @@ See [LICENSE][stdlib-license].
|
|
|
153
169
|
|
|
154
170
|
## Copyright
|
|
155
171
|
|
|
156
|
-
Copyright © 2016-
|
|
172
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
157
173
|
|
|
158
174
|
</section>
|
|
159
175
|
|
|
@@ -172,9 +188,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
172
188
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-iter-meanabs/main.svg
|
|
173
189
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-iter-meanabs?branch=main
|
|
174
190
|
|
|
191
|
+
<!--
|
|
192
|
+
|
|
175
193
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-iter-meanabs.svg
|
|
176
194
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-iter-meanabs/main
|
|
177
195
|
|
|
196
|
+
-->
|
|
197
|
+
|
|
198
|
+
[umd]: https://github.com/umdjs/umd
|
|
199
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
200
|
+
|
|
201
|
+
[deno-url]: https://github.com/stdlib-js/stats-iter-meanabs/tree/deno
|
|
202
|
+
[umd-url]: https://github.com/stdlib-js/stats-iter-meanabs/tree/umd
|
|
203
|
+
[esm-url]: https://github.com/stdlib-js/stats-iter-meanabs/tree/esm
|
|
204
|
+
|
|
178
205
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
179
206
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
180
207
|
|
|
@@ -188,6 +215,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
188
215
|
|
|
189
216
|
[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol
|
|
190
217
|
|
|
218
|
+
<!-- <related-links> -->
|
|
219
|
+
|
|
220
|
+
[@stdlib/stats/iter/mean]: https://www.npmjs.com/package/@stdlib/stats-iter-mean
|
|
221
|
+
|
|
222
|
+
[@stdlib/stats/iter/mmeanabs]: https://www.npmjs.com/package/@stdlib/stats-iter-mmeanabs
|
|
223
|
+
|
|
224
|
+
[@stdlib/stats/iter/sumabs]: https://www.npmjs.com/package/@stdlib/stats-iter-sumabs
|
|
225
|
+
|
|
226
|
+
<!-- </related-links> -->
|
|
227
|
+
|
|
191
228
|
</section>
|
|
192
229
|
|
|
193
230
|
<!-- /.links -->
|