@stdlib/stats-iter-midrange 0.0.3 → 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 +50 -3
- package/package.json +2 -2
- package/CHANGELOG.md +0 -5
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
|
|
|
@@ -131,6 +148,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
131
148
|
|
|
132
149
|
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
|
|
133
150
|
|
|
151
|
+
#### Community
|
|
152
|
+
|
|
153
|
+
[![Chat][chat-image]][chat-url]
|
|
154
|
+
|
|
134
155
|
---
|
|
135
156
|
|
|
136
157
|
## License
|
|
@@ -140,7 +161,7 @@ See [LICENSE][stdlib-license].
|
|
|
140
161
|
|
|
141
162
|
## Copyright
|
|
142
163
|
|
|
143
|
-
Copyright © 2016-
|
|
164
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
144
165
|
|
|
145
166
|
</section>
|
|
146
167
|
|
|
@@ -159,9 +180,23 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
159
180
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-iter-midrange/main.svg
|
|
160
181
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-iter-midrange?branch=main
|
|
161
182
|
|
|
162
|
-
|
|
183
|
+
<!--
|
|
184
|
+
|
|
185
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-iter-midrange.svg
|
|
163
186
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-iter-midrange/main
|
|
164
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
|
+
|
|
197
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
198
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
199
|
+
|
|
165
200
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
166
201
|
|
|
167
202
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
@@ -174,6 +209,18 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
174
209
|
|
|
175
210
|
[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol
|
|
176
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
|
+
|
|
177
224
|
</section>
|
|
178
225
|
|
|
179
226
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/stats-iter-midrange",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Compute the mid-range of all iterated values.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/stats-iter-midrange.git"
|