@stdlib/stats-iter-midrange 0.0.6 → 0.0.7
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 +42 -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
|
# itermidrange
|
|
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 [mid-range][mid-range] of all [iterated][mdn-iterator-protocol] values.
|
|
26
26
|
|
|
@@ -118,6 +118,23 @@ console.log( 'mid-range: %d.', v );
|
|
|
118
118
|
|
|
119
119
|
<!-- /.references -->
|
|
120
120
|
|
|
121
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
122
|
+
|
|
123
|
+
<section class="related">
|
|
124
|
+
|
|
125
|
+
* * *
|
|
126
|
+
|
|
127
|
+
## See Also
|
|
128
|
+
|
|
129
|
+
- <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>
|
|
130
|
+
- <span class="package-name">[`@stdlib/stats/iter/max`][@stdlib/stats/iter/max]</span><span class="delimiter">: </span><span class="description">compute the maximum value of all iterated values.</span>
|
|
131
|
+
- <span class="package-name">[`@stdlib/stats/iter/min`][@stdlib/stats/iter/min]</span><span class="delimiter">: </span><span class="description">compute the minimum value of all iterated values.</span>
|
|
132
|
+
- <span class="package-name">[`@stdlib/stats/iter/range`][@stdlib/stats/iter/range]</span><span class="delimiter">: </span><span class="description">compute the range of all iterated values.</span>
|
|
133
|
+
|
|
134
|
+
</section>
|
|
135
|
+
|
|
136
|
+
<!-- /.related -->
|
|
137
|
+
|
|
121
138
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
122
139
|
|
|
123
140
|
|
|
@@ -144,7 +161,7 @@ See [LICENSE][stdlib-license].
|
|
|
144
161
|
|
|
145
162
|
## Copyright
|
|
146
163
|
|
|
147
|
-
Copyright © 2016-
|
|
164
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
148
165
|
|
|
149
166
|
</section>
|
|
150
167
|
|
|
@@ -163,9 +180,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
163
180
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-iter-midrange/main.svg
|
|
164
181
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-iter-midrange?branch=main
|
|
165
182
|
|
|
183
|
+
<!--
|
|
184
|
+
|
|
166
185
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-iter-midrange.svg
|
|
167
186
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-iter-midrange/main
|
|
168
187
|
|
|
188
|
+
-->
|
|
189
|
+
|
|
190
|
+
[umd]: https://github.com/umdjs/umd
|
|
191
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
192
|
+
|
|
193
|
+
[deno-url]: https://github.com/stdlib-js/stats-iter-midrange/tree/deno
|
|
194
|
+
[umd-url]: https://github.com/stdlib-js/stats-iter-midrange/tree/umd
|
|
195
|
+
[esm-url]: https://github.com/stdlib-js/stats-iter-midrange/tree/esm
|
|
196
|
+
|
|
169
197
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
170
198
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
171
199
|
|
|
@@ -181,6 +209,18 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
181
209
|
|
|
182
210
|
[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol
|
|
183
211
|
|
|
212
|
+
<!-- <related-links> -->
|
|
213
|
+
|
|
214
|
+
[@stdlib/stats/iter/mean]: https://www.npmjs.com/package/@stdlib/stats-iter-mean
|
|
215
|
+
|
|
216
|
+
[@stdlib/stats/iter/max]: https://www.npmjs.com/package/@stdlib/stats-iter-max
|
|
217
|
+
|
|
218
|
+
[@stdlib/stats/iter/min]: https://www.npmjs.com/package/@stdlib/stats-iter-min
|
|
219
|
+
|
|
220
|
+
[@stdlib/stats/iter/range]: https://www.npmjs.com/package/@stdlib/stats-iter-range
|
|
221
|
+
|
|
222
|
+
<!-- </related-links> -->
|
|
223
|
+
|
|
184
224
|
</section>
|
|
185
225
|
|
|
186
226
|
<!-- /.links -->
|