@stdlib/stats-iter 0.0.6 → 0.2.0
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/LICENSE +0 -304
- package/NOTICE +1 -1
- package/README.md +25 -10
- package/SECURITY.md +5 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +7 -0
- package/docs/types/index.d.ts +45 -46
- package/package.json +95 -94
- package/docs/types/test.ts +0 -29
package/LICENSE
CHANGED
|
@@ -175,307 +175,3 @@
|
|
|
175
175
|
of your accepting any such warranty or additional liability.
|
|
176
176
|
|
|
177
177
|
END OF TERMS AND CONDITIONS
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
Boost Software License - Version 1.0 - August 17th, 2003
|
|
182
|
-
|
|
183
|
-
Permission is hereby granted, free of charge, to any person or organization
|
|
184
|
-
obtaining a copy of the software and accompanying documentation covered by this
|
|
185
|
-
license (the "Software") to use, reproduce, display, distribute, execute, and
|
|
186
|
-
transmit the Software, and to prepare derivative works of the Software, and to
|
|
187
|
-
permit third-parties to whom the Software is furnished to do so, all subject to
|
|
188
|
-
the following:
|
|
189
|
-
|
|
190
|
-
The copyright notices in the Software and this entire statement, including the
|
|
191
|
-
above license grant, this restriction and the following disclaimer, must be
|
|
192
|
-
included in all copies of the Software, in whole or in part, and all derivative
|
|
193
|
-
works of the Software, unless such copies or derivative works are solely in the
|
|
194
|
-
form of machine-executable object code generated by a source language processor.
|
|
195
|
-
|
|
196
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
197
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
198
|
-
FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
199
|
-
COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES
|
|
200
|
-
OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
|
|
201
|
-
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
DEPENDENCIES
|
|
207
|
-
|
|
208
|
-
The library links against the following external libraries, which have their own
|
|
209
|
-
licenses:
|
|
210
|
-
|
|
211
|
-
* OpenBLAS <https://raw.githubusercontent.com/xianyi/OpenBLAS/
|
|
212
|
-
def146efed8d5908ea04e22668feeab7099599a0/LICENSE>
|
|
213
|
-
|
|
214
|
-
Copyright (c) 2011-2014, The OpenBLAS Project
|
|
215
|
-
All rights reserved.
|
|
216
|
-
|
|
217
|
-
Redistribution and use in source and binary forms, with or without
|
|
218
|
-
modification, are permitted provided that the following conditions are
|
|
219
|
-
met:
|
|
220
|
-
|
|
221
|
-
1. Redistributions of source code must retain the above copyright
|
|
222
|
-
notice, this list of conditions and the following disclaimer.
|
|
223
|
-
|
|
224
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
225
|
-
notice, this list of conditions and the following disclaimer in
|
|
226
|
-
the documentation and/or other materials provided with the
|
|
227
|
-
distribution.
|
|
228
|
-
|
|
229
|
-
3. Neither the name of the OpenBLAS project nor the names of
|
|
230
|
-
its contributors may be used to endorse or promote products
|
|
231
|
-
derived from this software without specific prior written
|
|
232
|
-
permission.
|
|
233
|
-
|
|
234
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
235
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
236
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
237
|
-
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
238
|
-
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
239
|
-
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
240
|
-
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
241
|
-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
242
|
-
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
243
|
-
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
* Electron <https://raw.githubusercontent.com/electron/electron/
|
|
247
|
-
c4cfb3e7110266b9d7ad80e1ae097c4db564501c/LICENSE>
|
|
248
|
-
|
|
249
|
-
Copyright (c) 2013-2017 GitHub Inc.
|
|
250
|
-
|
|
251
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
252
|
-
a copy of this software and associated documentation files (the
|
|
253
|
-
"Software"), to deal in the Software without restriction, including
|
|
254
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
255
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
256
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
257
|
-
the following conditions:
|
|
258
|
-
|
|
259
|
-
The above copyright notice and this permission notice shall be
|
|
260
|
-
included in all copies or substantial portions of the Software.
|
|
261
|
-
|
|
262
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
263
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
264
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
265
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
266
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
267
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
268
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
* Boost <http://www.boost.org/LICENSE_1_0.txt>
|
|
272
|
-
|
|
273
|
-
Boost Software License - Version 1.0 - August 17th, 2003
|
|
274
|
-
|
|
275
|
-
Permission is hereby granted, free of charge, to any person or organization
|
|
276
|
-
obtaining a copy of the software and accompanying documentation covered by
|
|
277
|
-
this license (the "Software") to use, reproduce, display, distribute,
|
|
278
|
-
execute, and transmit the Software, and to prepare derivative works of the
|
|
279
|
-
Software, and to permit third-parties to whom the Software is furnished to
|
|
280
|
-
do so, all subject to the following:
|
|
281
|
-
|
|
282
|
-
The copyright notices in the Software and this entire statement, including
|
|
283
|
-
the above license grant, this restriction and the following disclaimer,
|
|
284
|
-
must be included in all copies of the Software, in whole or in part, and
|
|
285
|
-
all derivative works of the Software, unless such copies or derivative
|
|
286
|
-
works are solely in the form of machine-executable object code generated by
|
|
287
|
-
a source language processor.
|
|
288
|
-
|
|
289
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
290
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
291
|
-
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
292
|
-
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
293
|
-
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
294
|
-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
295
|
-
DEALINGS IN THE SOFTWARE.
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
* Cephes <http://www.netlib.org/cephes/readme>
|
|
299
|
-
|
|
300
|
-
Copyright (c) 1984-2000 Stephen L. Moshier
|
|
301
|
-
|
|
302
|
-
Some software in this archive may be from the book _Methods and Programs for
|
|
303
|
-
Mathematical Functions_ (Prentice-Hall or Simon & Schuster International, 1989)
|
|
304
|
-
or from the Cephes Mathematical Library, a commercial product. In either event,
|
|
305
|
-
it is copyrighted by the author. What you see here may be used freely but it
|
|
306
|
-
comes with no support or guarantee.
|
|
307
|
-
|
|
308
|
-
Stephen L. Moshier
|
|
309
|
-
moshier@na-net.ornl.gov
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
ATTRIBUTION
|
|
314
|
-
|
|
315
|
-
The library contains implementations from the following external libraries,
|
|
316
|
-
which have their own licenses:
|
|
317
|
-
|
|
318
|
-
* FreeBSD <https://svnweb.freebsd.org/>
|
|
319
|
-
|
|
320
|
-
Copyright (C) 1993-2004 by Sun Microsystems, Inc. All rights reserved.
|
|
321
|
-
|
|
322
|
-
Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
323
|
-
Permission to use, copy, modify, and distribute this
|
|
324
|
-
software is freely granted, provided that this notice
|
|
325
|
-
is preserved.
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
* FDLIBM <http://www.netlib.org/fdlibm/>
|
|
329
|
-
|
|
330
|
-
Copyright (C) 2004 by Sun Microsystems, Inc. All rights reserved.
|
|
331
|
-
|
|
332
|
-
Developed at SunPro, a Sun Microsystems, Inc. business.
|
|
333
|
-
Permission to use, copy, modify, and distribute this
|
|
334
|
-
software is freely granted, provided that this notice
|
|
335
|
-
is preserved.
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
* Go <https://raw.githubusercontent.com/golang/go/master/LICENSE>
|
|
339
|
-
|
|
340
|
-
Copyright (c) 2009 The Go Authors. All rights reserved.
|
|
341
|
-
|
|
342
|
-
Redistribution and use in source and binary forms, with or without
|
|
343
|
-
modification, are permitted provided that the following conditions are
|
|
344
|
-
met:
|
|
345
|
-
|
|
346
|
-
* Redistributions of source code must retain the above copyright
|
|
347
|
-
notice, this list of conditions and the following disclaimer.
|
|
348
|
-
* Redistributions in binary form must reproduce the above
|
|
349
|
-
copyright notice, this list of conditions and the following disclaimer
|
|
350
|
-
in the documentation and/or other materials provided with the
|
|
351
|
-
distribution.
|
|
352
|
-
* Neither the name of Google Inc. nor the names of its
|
|
353
|
-
contributors may be used to endorse or promote products derived from
|
|
354
|
-
this software without specific prior written permission.
|
|
355
|
-
|
|
356
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
357
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
358
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
359
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
360
|
-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
361
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
362
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
363
|
-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
364
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
365
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
366
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
* SLATEC Common Mathematical Library <http://www.netlib.no/netlib/slatec/>
|
|
370
|
-
|
|
371
|
-
Public domain.
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
* ESLint <https://raw.githubusercontent.com/eslint/eslint/master/LICENSE>
|
|
375
|
-
|
|
376
|
-
Copyright JS Foundation and other contributors, https://js.foundation
|
|
377
|
-
|
|
378
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
379
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
380
|
-
in the Software without restriction, including without limitation the rights
|
|
381
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
382
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
383
|
-
furnished to do so, subject to the following conditions:
|
|
384
|
-
|
|
385
|
-
The above copyright notice and this permission notice shall be included in
|
|
386
|
-
all copies or substantial portions of the Software.
|
|
387
|
-
|
|
388
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
389
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
390
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
391
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
392
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
393
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
394
|
-
THE SOFTWARE.
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
* StatsFuns.jl <https://raw.githubusercontent.com/JuliaStats/StatsFuns.jl/
|
|
398
|
-
e66dd973650c375bc1739c820e5b96bb5bd000a8/LICENSE.md>
|
|
399
|
-
|
|
400
|
-
Copyright (c) 2015: Dahua Lin.
|
|
401
|
-
|
|
402
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
403
|
-
a copy of this software and associated documentation files (the
|
|
404
|
-
"Software"), to deal in the Software without restriction, including
|
|
405
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
406
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
407
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
408
|
-
the following conditions:
|
|
409
|
-
|
|
410
|
-
The above copyright notice and this permission notice shall be
|
|
411
|
-
included in all copies or substantial portions of the Software.
|
|
412
|
-
|
|
413
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
414
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
415
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
416
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
417
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
418
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
419
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
* SpecialFunctions.jl <https://raw.githubusercontent.com/JuliaMath/
|
|
423
|
-
SpecialFunctions.jl/02a173fbe24a61c4b392aec17a9764ac5727feb1/LICENSE>
|
|
424
|
-
|
|
425
|
-
The MIT License (MIT)
|
|
426
|
-
|
|
427
|
-
Copyright (c) 2017 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and others:
|
|
428
|
-
|
|
429
|
-
https://github.com/JuliaMath/SpecialFunctions.jl/graphs/contributors
|
|
430
|
-
|
|
431
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
432
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
433
|
-
in the Software without restriction, including without limitation the rights
|
|
434
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
435
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
436
|
-
furnished to do so, subject to the following conditions:
|
|
437
|
-
|
|
438
|
-
The above copyright notice and this permission notice shall be included in all
|
|
439
|
-
copies or substantial portions of the Software.
|
|
440
|
-
|
|
441
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
442
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
443
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
444
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
445
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
446
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
447
|
-
SOFTWARE.
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
* MT19937 <http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/CODES/
|
|
451
|
-
mt19937ar.c>
|
|
452
|
-
|
|
453
|
-
Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
|
|
454
|
-
All rights reserved.
|
|
455
|
-
|
|
456
|
-
Redistribution and use in source and binary forms, with or without
|
|
457
|
-
modification, are permitted provided that the following conditions
|
|
458
|
-
are met:
|
|
459
|
-
|
|
460
|
-
1. Redistributions of source code must retain the above copyright
|
|
461
|
-
notice, this list of conditions and the following disclaimer.
|
|
462
|
-
|
|
463
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
464
|
-
notice, this list of conditions and the following disclaimer in the
|
|
465
|
-
documentation and/or other materials provided with the distribution.
|
|
466
|
-
|
|
467
|
-
3. The names of its contributors may not be used to endorse or promote
|
|
468
|
-
products derived from this software without specific prior written
|
|
469
|
-
permission.
|
|
470
|
-
|
|
471
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
472
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
473
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
474
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
475
|
-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
476
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
477
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
478
|
-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
479
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
480
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
481
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -18,6 +18,17 @@ limitations under the License.
|
|
|
18
18
|
|
|
19
19
|
-->
|
|
20
20
|
|
|
21
|
+
|
|
22
|
+
<details>
|
|
23
|
+
<summary>
|
|
24
|
+
About stdlib...
|
|
25
|
+
</summary>
|
|
26
|
+
<p>We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.</p>
|
|
27
|
+
<p>The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.</p>
|
|
28
|
+
<p>When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.</p>
|
|
29
|
+
<p>To join us in bringing numerical computing to the web, get started by checking us out on <a href="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <a href="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p>
|
|
30
|
+
</details>
|
|
31
|
+
|
|
21
32
|
# Iterator Statistics
|
|
22
33
|
|
|
23
34
|
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
@@ -160,7 +171,7 @@ See [LICENSE][stdlib-license].
|
|
|
160
171
|
|
|
161
172
|
## Copyright
|
|
162
173
|
|
|
163
|
-
Copyright © 2016-
|
|
174
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
164
175
|
|
|
165
176
|
</section>
|
|
166
177
|
|
|
@@ -173,8 +184,8 @@ Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
|
173
184
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-iter.svg
|
|
174
185
|
[npm-url]: https://npmjs.org/package/@stdlib/stats-iter
|
|
175
186
|
|
|
176
|
-
[test-image]: https://github.com/stdlib-js/stats-iter/actions/workflows/test.yml/badge.svg
|
|
177
|
-
[test-url]: https://github.com/stdlib-js/stats-iter/actions/workflows/test.yml
|
|
187
|
+
[test-image]: https://github.com/stdlib-js/stats-iter/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
188
|
+
[test-url]: https://github.com/stdlib-js/stats-iter/actions/workflows/test.yml?query=branch:v0.2.0
|
|
178
189
|
|
|
179
190
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-iter/main.svg
|
|
180
191
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-iter?branch=main
|
|
@@ -186,19 +197,23 @@ Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
|
186
197
|
|
|
187
198
|
-->
|
|
188
199
|
|
|
200
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
201
|
+
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
|
|
202
|
+
|
|
203
|
+
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
204
|
+
|
|
205
|
+
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
206
|
+
|
|
189
207
|
[umd]: https://github.com/umdjs/umd
|
|
190
208
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
191
209
|
|
|
192
210
|
[deno-url]: https://github.com/stdlib-js/stats-iter/tree/deno
|
|
211
|
+
[deno-readme]: https://github.com/stdlib-js/stats-iter/blob/deno/README.md
|
|
193
212
|
[umd-url]: https://github.com/stdlib-js/stats-iter/tree/umd
|
|
213
|
+
[umd-readme]: https://github.com/stdlib-js/stats-iter/blob/umd/README.md
|
|
194
214
|
[esm-url]: https://github.com/stdlib-js/stats-iter/tree/esm
|
|
195
|
-
|
|
196
|
-
[
|
|
197
|
-
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
198
|
-
|
|
199
|
-
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
200
|
-
|
|
201
|
-
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
215
|
+
[esm-readme]: https://github.com/stdlib-js/stats-iter/blob/esm/README.md
|
|
216
|
+
[branches-url]: https://github.com/stdlib-js/stats-iter/blob/main/branches.md
|
|
202
217
|
|
|
203
218
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/stats-iter/main/LICENSE
|
|
204
219
|
|
package/SECURITY.md
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";var r=require('@stdlib/utils-define-read-only-property/dist'),e={};r(e,"itercugmean",require('@stdlib/stats-iter-cugmean/dist'));r(e,"itercuhmean",require('@stdlib/stats-iter-cuhmean/dist'));r(e,"itercumax",require('@stdlib/stats-iter-cumax/dist'));r(e,"itercumaxabs",require('@stdlib/stats-iter-cumaxabs/dist'));r(e,"itercumean",require('@stdlib/stats-iter-cumean/dist'));r(e,"itercumeanabs",require('@stdlib/stats-iter-cumeanabs/dist'));r(e,"itercumeanabs2",require('@stdlib/stats-iter-cumeanabs2/dist'));r(e,"itercumidrange",require('@stdlib/stats-iter-cumidrange/dist'));r(e,"itercumin",require('@stdlib/stats-iter-cumin/dist'));r(e,"itercuminabs",require('@stdlib/stats-iter-cuminabs/dist'));r(e,"itercuprod",require('@stdlib/stats-iter-cuprod/dist'));r(e,"itercurange",require('@stdlib/stats-iter-curange/dist'));r(e,"itercusum",require('@stdlib/stats-iter-cusum/dist'));r(e,"itercusumabs",require('@stdlib/stats-iter-cusumabs/dist'));r(e,"itercusumabs2",require('@stdlib/stats-iter-cusumabs2/dist'));r(e,"itermax",require('@stdlib/stats-iter-max/dist'));r(e,"itermaxabs",require('@stdlib/stats-iter-maxabs/dist'));r(e,"itermean",require('@stdlib/stats-iter-mean/dist'));r(e,"itermeanabs",require('@stdlib/stats-iter-meanabs/dist'));r(e,"itermeanabs2",require('@stdlib/stats-iter-meanabs2/dist'));r(e,"itermidrange",require('@stdlib/stats-iter-midrange/dist'));r(e,"itermin",require('@stdlib/stats-iter-min/dist'));r(e,"iterminabs",require('@stdlib/stats-iter-minabs/dist'));r(e,"itermmax",require('@stdlib/stats-iter-mmax/dist'));r(e,"itermmaxabs",require('@stdlib/stats-iter-mmaxabs/dist'));r(e,"itermmean",require('@stdlib/stats-iter-mmean/dist'));r(e,"itermmeanabs",require('@stdlib/stats-iter-mmeanabs/dist'));r(e,"itermmeanabs2",require('@stdlib/stats-iter-mmeanabs2/dist'));r(e,"itermmidrange",require('@stdlib/stats-iter-mmidrange/dist'));r(e,"itermmin",require('@stdlib/stats-iter-mmin/dist'));r(e,"itermminabs",require('@stdlib/stats-iter-mminabs/dist'));r(e,"itermprod",require('@stdlib/stats-iter-mprod/dist'));r(e,"itermrange",require('@stdlib/stats-iter-mrange/dist'));r(e,"itermsum",require('@stdlib/stats-iter-msum/dist'));r(e,"itermsumabs",require('@stdlib/stats-iter-msumabs/dist'));r(e,"itermsumabs2",require('@stdlib/stats-iter-msumabs2/dist'));r(e,"iterprod",require('@stdlib/stats-iter-prod/dist'));r(e,"iterrange",require('@stdlib/stats-iter-range/dist'));r(e,"iterstdev",require('@stdlib/stats-iter-stdev/dist'));r(e,"itersum",require('@stdlib/stats-iter-sum/dist'));r(e,"itersumabs",require('@stdlib/stats-iter-sumabs/dist'));r(e,"itersumabs2",require('@stdlib/stats-iter-sumabs2/dist'));r(e,"itervariance",require('@stdlib/stats-iter-variance/dist'));module.exports=e;
|
|
2
|
+
/** @license Apache-2.0 */
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../lib/index.js"],
|
|
4
|
+
"sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/*\n* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.\n*/\n\n// MODULES //\n\nvar setReadOnly = require( '@stdlib/utils-define-read-only-property' );\n\n\n// MAIN //\n\n/**\n* Top-level namespace.\n*\n* @namespace ns\n*/\nvar ns = {};\n\n/**\n* @name itercugmean\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cugmean}\n*/\nsetReadOnly( ns, 'itercugmean', require( '@stdlib/stats-iter-cugmean' ) );\n\n/**\n* @name itercuhmean\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cuhmean}\n*/\nsetReadOnly( ns, 'itercuhmean', require( '@stdlib/stats-iter-cuhmean' ) );\n\n/**\n* @name itercumax\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cumax}\n*/\nsetReadOnly( ns, 'itercumax', require( '@stdlib/stats-iter-cumax' ) );\n\n/**\n* @name itercumaxabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cumaxabs}\n*/\nsetReadOnly( ns, 'itercumaxabs', require( '@stdlib/stats-iter-cumaxabs' ) );\n\n/**\n* @name itercumean\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cumean}\n*/\nsetReadOnly( ns, 'itercumean', require( '@stdlib/stats-iter-cumean' ) );\n\n/**\n* @name itercumeanabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cumeanabs}\n*/\nsetReadOnly( ns, 'itercumeanabs', require( '@stdlib/stats-iter-cumeanabs' ) );\n\n/**\n* @name itercumeanabs2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cumeanabs2}\n*/\nsetReadOnly( ns, 'itercumeanabs2', require( '@stdlib/stats-iter-cumeanabs2' ) );\n\n/**\n* @name itercumidrange\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cumidrange}\n*/\nsetReadOnly( ns, 'itercumidrange', require( '@stdlib/stats-iter-cumidrange' ) );\n\n/**\n* @name itercumin\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cumin}\n*/\nsetReadOnly( ns, 'itercumin', require( '@stdlib/stats-iter-cumin' ) );\n\n/**\n* @name itercuminabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cuminabs}\n*/\nsetReadOnly( ns, 'itercuminabs', require( '@stdlib/stats-iter-cuminabs' ) );\n\n/**\n* @name itercuprod\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cuprod}\n*/\nsetReadOnly( ns, 'itercuprod', require( '@stdlib/stats-iter-cuprod' ) );\n\n/**\n* @name itercurange\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/curange}\n*/\nsetReadOnly( ns, 'itercurange', require( '@stdlib/stats-iter-curange' ) );\n\n/**\n* @name itercusum\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cusum}\n*/\nsetReadOnly( ns, 'itercusum', require( '@stdlib/stats-iter-cusum' ) );\n\n/**\n* @name itercusumabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cusumabs}\n*/\nsetReadOnly( ns, 'itercusumabs', require( '@stdlib/stats-iter-cusumabs' ) );\n\n/**\n* @name itercusumabs2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/cusumabs2}\n*/\nsetReadOnly( ns, 'itercusumabs2', require( '@stdlib/stats-iter-cusumabs2' ) );\n\n/**\n* @name itermax\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/max}\n*/\nsetReadOnly( ns, 'itermax', require( '@stdlib/stats-iter-max' ) );\n\n/**\n* @name itermaxabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/maxabs}\n*/\nsetReadOnly( ns, 'itermaxabs', require( '@stdlib/stats-iter-maxabs' ) );\n\n/**\n* @name itermean\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mean}\n*/\nsetReadOnly( ns, 'itermean', require( '@stdlib/stats-iter-mean' ) );\n\n/**\n* @name itermeanabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/meanabs}\n*/\nsetReadOnly( ns, 'itermeanabs', require( '@stdlib/stats-iter-meanabs' ) );\n\n/**\n* @name itermeanabs2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/meanabs2}\n*/\nsetReadOnly( ns, 'itermeanabs2', require( '@stdlib/stats-iter-meanabs2' ) );\n\n/**\n* @name itermidrange\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/midrange}\n*/\nsetReadOnly( ns, 'itermidrange', require( '@stdlib/stats-iter-midrange' ) );\n\n/**\n* @name itermin\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/min}\n*/\nsetReadOnly( ns, 'itermin', require( '@stdlib/stats-iter-min' ) );\n\n/**\n* @name iterminabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/minabs}\n*/\nsetReadOnly( ns, 'iterminabs', require( '@stdlib/stats-iter-minabs' ) );\n\n/**\n* @name itermmax\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mmax}\n*/\nsetReadOnly( ns, 'itermmax', require( '@stdlib/stats-iter-mmax' ) );\n\n/**\n* @name itermmaxabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mmaxabs}\n*/\nsetReadOnly( ns, 'itermmaxabs', require( '@stdlib/stats-iter-mmaxabs' ) );\n\n/**\n* @name itermmean\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mmean}\n*/\nsetReadOnly( ns, 'itermmean', require( '@stdlib/stats-iter-mmean' ) );\n\n/**\n* @name itermmeanabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mmeanabs}\n*/\nsetReadOnly( ns, 'itermmeanabs', require( '@stdlib/stats-iter-mmeanabs' ) );\n\n/**\n* @name itermmeanabs2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mmeanabs2}\n*/\nsetReadOnly( ns, 'itermmeanabs2', require( '@stdlib/stats-iter-mmeanabs2' ) );\n\n/**\n* @name itermmidrange\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mmidrange}\n*/\nsetReadOnly( ns, 'itermmidrange', require( '@stdlib/stats-iter-mmidrange' ) );\n\n/**\n* @name itermmin\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mmin}\n*/\nsetReadOnly( ns, 'itermmin', require( '@stdlib/stats-iter-mmin' ) );\n\n/**\n* @name itermminabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mminabs}\n*/\nsetReadOnly( ns, 'itermminabs', require( '@stdlib/stats-iter-mminabs' ) );\n\n/**\n* @name itermprod\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mprod}\n*/\nsetReadOnly( ns, 'itermprod', require( '@stdlib/stats-iter-mprod' ) );\n\n/**\n* @name itermrange\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/mrange}\n*/\nsetReadOnly( ns, 'itermrange', require( '@stdlib/stats-iter-mrange' ) );\n\n/**\n* @name itermsum\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/msum}\n*/\nsetReadOnly( ns, 'itermsum', require( '@stdlib/stats-iter-msum' ) );\n\n/**\n* @name itermsumabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/msumabs}\n*/\nsetReadOnly( ns, 'itermsumabs', require( '@stdlib/stats-iter-msumabs' ) );\n\n/**\n* @name itermsumabs2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/msumabs2}\n*/\nsetReadOnly( ns, 'itermsumabs2', require( '@stdlib/stats-iter-msumabs2' ) );\n\n/**\n* @name iterprod\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/prod}\n*/\nsetReadOnly( ns, 'iterprod', require( '@stdlib/stats-iter-prod' ) );\n\n/**\n* @name iterrange\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/range}\n*/\nsetReadOnly( ns, 'iterrange', require( '@stdlib/stats-iter-range' ) );\n\n/**\n* @name iterstdev\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/stdev}\n*/\nsetReadOnly( ns, 'iterstdev', require( '@stdlib/stats-iter-stdev' ) );\n\n/**\n* @name itersum\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/sum}\n*/\nsetReadOnly( ns, 'itersum', require( '@stdlib/stats-iter-sum' ) );\n\n/**\n* @name itersumabs\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/sumabs}\n*/\nsetReadOnly( ns, 'itersumabs', require( '@stdlib/stats-iter-sumabs' ) );\n\n/**\n* @name itersumabs2\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/sumabs2}\n*/\nsetReadOnly( ns, 'itersumabs2', require( '@stdlib/stats-iter-sumabs2' ) );\n\n/**\n* @name itervariance\n* @memberof ns\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/iter/variance}\n*/\nsetReadOnly( ns, 'itervariance', require( '@stdlib/stats-iter-variance' ) );\n\n\n// EXPORTS //\n\nmodule.exports = ns;\n"],
|
|
5
|
+
"mappings": "aA0BA,IAAIA,EAAc,QAAS,yCAA0C,EAUjEC,EAAK,CAAC,EASVD,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,YAAa,QAAS,0BAA2B,CAAE,EASpED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAS1ED,EAAaC,EAAI,aAAc,QAAS,2BAA4B,CAAE,EAStED,EAAaC,EAAI,gBAAiB,QAAS,8BAA+B,CAAE,EAS5ED,EAAaC,EAAI,iBAAkB,QAAS,+BAAgC,CAAE,EAS9ED,EAAaC,EAAI,iBAAkB,QAAS,+BAAgC,CAAE,EAS9ED,EAAaC,EAAI,YAAa,QAAS,0BAA2B,CAAE,EASpED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAS1ED,EAAaC,EAAI,aAAc,QAAS,2BAA4B,CAAE,EAStED,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,YAAa,QAAS,0BAA2B,CAAE,EASpED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAS1ED,EAAaC,EAAI,gBAAiB,QAAS,8BAA+B,CAAE,EAS5ED,EAAaC,EAAI,UAAW,QAAS,wBAAyB,CAAE,EAShED,EAAaC,EAAI,aAAc,QAAS,2BAA4B,CAAE,EAStED,EAAaC,EAAI,WAAY,QAAS,yBAA0B,CAAE,EASlED,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAS1ED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAS1ED,EAAaC,EAAI,UAAW,QAAS,wBAAyB,CAAE,EAShED,EAAaC,EAAI,aAAc,QAAS,2BAA4B,CAAE,EAStED,EAAaC,EAAI,WAAY,QAAS,yBAA0B,CAAE,EASlED,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,YAAa,QAAS,0BAA2B,CAAE,EASpED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAS1ED,EAAaC,EAAI,gBAAiB,QAAS,8BAA+B,CAAE,EAS5ED,EAAaC,EAAI,gBAAiB,QAAS,8BAA+B,CAAE,EAS5ED,EAAaC,EAAI,WAAY,QAAS,yBAA0B,CAAE,EASlED,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,YAAa,QAAS,0BAA2B,CAAE,EASpED,EAAaC,EAAI,aAAc,QAAS,2BAA4B,CAAE,EAStED,EAAaC,EAAI,WAAY,QAAS,yBAA0B,CAAE,EASlED,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAS1ED,EAAaC,EAAI,WAAY,QAAS,yBAA0B,CAAE,EASlED,EAAaC,EAAI,YAAa,QAAS,0BAA2B,CAAE,EASpED,EAAaC,EAAI,YAAa,QAAS,0BAA2B,CAAE,EASpED,EAAaC,EAAI,UAAW,QAAS,wBAAyB,CAAE,EAShED,EAAaC,EAAI,aAAc,QAAS,2BAA4B,CAAE,EAStED,EAAaC,EAAI,cAAe,QAAS,4BAA6B,CAAE,EASxED,EAAaC,EAAI,eAAgB,QAAS,6BAA8B,CAAE,EAK1E,OAAO,QAAUA",
|
|
6
|
+
"names": ["setReadOnly", "ns"]
|
|
7
|
+
}
|
package/docs/types/index.d.ts
CHANGED
|
@@ -16,10 +16,9 @@
|
|
|
16
16
|
* limitations under the License.
|
|
17
17
|
*/
|
|
18
18
|
|
|
19
|
-
// TypeScript Version:
|
|
19
|
+
// TypeScript Version: 4.1
|
|
20
20
|
|
|
21
|
-
/*
|
|
22
|
-
/* tslint:disable:max-file-line-count */
|
|
21
|
+
/* eslint-disable max-lines */
|
|
23
22
|
|
|
24
23
|
import itercugmean = require( '@stdlib/stats-iter-cugmean' );
|
|
25
24
|
import itercuhmean = require( '@stdlib/stats-iter-cuhmean' );
|
|
@@ -81,7 +80,7 @@ interface Namespace {
|
|
|
81
80
|
* @returns iterator
|
|
82
81
|
*
|
|
83
82
|
* @example
|
|
84
|
-
* var runif = require(
|
|
83
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
85
84
|
*
|
|
86
85
|
* var rand = runif( 0.0, 10.0, {
|
|
87
86
|
* 'iter': 100
|
|
@@ -113,7 +112,7 @@ interface Namespace {
|
|
|
113
112
|
* @returns iterator
|
|
114
113
|
*
|
|
115
114
|
* @example
|
|
116
|
-
* var runif = require(
|
|
115
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
117
116
|
*
|
|
118
117
|
* var rand = runif( 0.0, 10.0, {
|
|
119
118
|
* 'iter': 100
|
|
@@ -145,7 +144,7 @@ interface Namespace {
|
|
|
145
144
|
* @returns iterator
|
|
146
145
|
*
|
|
147
146
|
* @example
|
|
148
|
-
* var runif = require(
|
|
147
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
149
148
|
*
|
|
150
149
|
* var rand = runif( -10.0, 10.0, {
|
|
151
150
|
* 'iter': 100
|
|
@@ -177,7 +176,7 @@ interface Namespace {
|
|
|
177
176
|
* @returns iterator
|
|
178
177
|
*
|
|
179
178
|
* @example
|
|
180
|
-
* var runif = require(
|
|
179
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
181
180
|
*
|
|
182
181
|
* var rand = runif( -10.0, 10.0, {
|
|
183
182
|
* 'iter': 100
|
|
@@ -209,7 +208,7 @@ interface Namespace {
|
|
|
209
208
|
* @returns iterator
|
|
210
209
|
*
|
|
211
210
|
* @example
|
|
212
|
-
* var runif = require(
|
|
211
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
213
212
|
*
|
|
214
213
|
* var rand = runif( -10.0, 10.0, {
|
|
215
214
|
* 'iter': 100
|
|
@@ -241,7 +240,7 @@ interface Namespace {
|
|
|
241
240
|
* @returns iterator
|
|
242
241
|
*
|
|
243
242
|
* @example
|
|
244
|
-
* var runif = require(
|
|
243
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
245
244
|
*
|
|
246
245
|
* var rand = runif( -10.0, 10.0, {
|
|
247
246
|
* 'iter': 100
|
|
@@ -273,7 +272,7 @@ interface Namespace {
|
|
|
273
272
|
* @returns iterator
|
|
274
273
|
*
|
|
275
274
|
* @example
|
|
276
|
-
* var runif = require(
|
|
275
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
277
276
|
*
|
|
278
277
|
* var rand = runif( -10.0, 10.0, {
|
|
279
278
|
* 'iter': 100
|
|
@@ -306,7 +305,7 @@ interface Namespace {
|
|
|
306
305
|
* @returns iterator
|
|
307
306
|
*
|
|
308
307
|
* @example
|
|
309
|
-
* var runif = require(
|
|
308
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
310
309
|
*
|
|
311
310
|
* var rand = runif( -10.0, 10.0, {
|
|
312
311
|
* 'iter': 100
|
|
@@ -338,7 +337,7 @@ interface Namespace {
|
|
|
338
337
|
* @returns iterator
|
|
339
338
|
*
|
|
340
339
|
* @example
|
|
341
|
-
* var runif = require(
|
|
340
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
342
341
|
*
|
|
343
342
|
* var rand = runif( -10.0, 10.0, {
|
|
344
343
|
* 'iter': 100
|
|
@@ -370,7 +369,7 @@ interface Namespace {
|
|
|
370
369
|
* @returns iterator
|
|
371
370
|
*
|
|
372
371
|
* @example
|
|
373
|
-
* var runif = require(
|
|
372
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
374
373
|
*
|
|
375
374
|
* var rand = runif( -10.0, 10.0, {
|
|
376
375
|
* 'iter': 100
|
|
@@ -402,7 +401,7 @@ interface Namespace {
|
|
|
402
401
|
* @returns iterator
|
|
403
402
|
*
|
|
404
403
|
* @example
|
|
405
|
-
* var runif = require(
|
|
404
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
406
405
|
*
|
|
407
406
|
* var rand = runif( -10.0, 10.0, {
|
|
408
407
|
* 'iter': 100
|
|
@@ -434,7 +433,7 @@ interface Namespace {
|
|
|
434
433
|
* @returns iterator
|
|
435
434
|
*
|
|
436
435
|
* @example
|
|
437
|
-
* var runif = require(
|
|
436
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
438
437
|
*
|
|
439
438
|
* var rand = runif( -10.0, 10.0, {
|
|
440
439
|
* 'iter': 100
|
|
@@ -466,7 +465,7 @@ interface Namespace {
|
|
|
466
465
|
* @returns iterator
|
|
467
466
|
*
|
|
468
467
|
* @example
|
|
469
|
-
* var runif = require(
|
|
468
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
470
469
|
*
|
|
471
470
|
* var rand = runif( -10.0, 10.0, {
|
|
472
471
|
* 'iter': 100
|
|
@@ -498,7 +497,7 @@ interface Namespace {
|
|
|
498
497
|
* @returns iterator
|
|
499
498
|
*
|
|
500
499
|
* @example
|
|
501
|
-
* var runif = require(
|
|
500
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
502
501
|
*
|
|
503
502
|
* var rand = runif( -10.0, 10.0, {
|
|
504
503
|
* 'iter': 100
|
|
@@ -530,7 +529,7 @@ interface Namespace {
|
|
|
530
529
|
* @returns iterator
|
|
531
530
|
*
|
|
532
531
|
* @example
|
|
533
|
-
* var runif = require(
|
|
532
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
534
533
|
*
|
|
535
534
|
* var rand = runif( -10.0, 10.0, {
|
|
536
535
|
* 'iter': 100
|
|
@@ -558,7 +557,7 @@ interface Namespace {
|
|
|
558
557
|
* @returns maximum value
|
|
559
558
|
*
|
|
560
559
|
* @example
|
|
561
|
-
* var runif = require(
|
|
560
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
562
561
|
*
|
|
563
562
|
* var rand = runif( -10.0, 10.0, {
|
|
564
563
|
* 'iter': 100
|
|
@@ -576,7 +575,7 @@ interface Namespace {
|
|
|
576
575
|
* @returns maximum absolute value
|
|
577
576
|
*
|
|
578
577
|
* @example
|
|
579
|
-
* var runif = require(
|
|
578
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
580
579
|
*
|
|
581
580
|
* var rand = runif( -10.0, 10.0, {
|
|
582
581
|
* 'iter': 100
|
|
@@ -594,7 +593,7 @@ interface Namespace {
|
|
|
594
593
|
* @returns arithmetic mean
|
|
595
594
|
*
|
|
596
595
|
* @example
|
|
597
|
-
* var runif = require(
|
|
596
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
598
597
|
*
|
|
599
598
|
* var rand = runif( -10.0, 10.0, {
|
|
600
599
|
* 'iter': 100
|
|
@@ -612,7 +611,7 @@ interface Namespace {
|
|
|
612
611
|
* @returns arithmetic mean of absolute values
|
|
613
612
|
*
|
|
614
613
|
* @example
|
|
615
|
-
* var runif = require(
|
|
614
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
616
615
|
*
|
|
617
616
|
* var rand = runif( -10.0, 10.0, {
|
|
618
617
|
* 'iter': 100
|
|
@@ -630,7 +629,7 @@ interface Namespace {
|
|
|
630
629
|
* @returns arithmetic mean of squared absolute values
|
|
631
630
|
*
|
|
632
631
|
* @example
|
|
633
|
-
* var runif = require(
|
|
632
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
634
633
|
*
|
|
635
634
|
* var rand = runif( -10.0, 10.0, {
|
|
636
635
|
* 'iter': 100
|
|
@@ -652,7 +651,7 @@ interface Namespace {
|
|
|
652
651
|
* @returns mid-range
|
|
653
652
|
*
|
|
654
653
|
* @example
|
|
655
|
-
* var runif = require(
|
|
654
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
656
655
|
*
|
|
657
656
|
* var rand = runif( -10.0, 10.0, {
|
|
658
657
|
* 'iter': 100
|
|
@@ -670,7 +669,7 @@ interface Namespace {
|
|
|
670
669
|
* @returns minimum value
|
|
671
670
|
*
|
|
672
671
|
* @example
|
|
673
|
-
* var runif = require(
|
|
672
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
674
673
|
*
|
|
675
674
|
* var rand = runif( -10.0, 10.0, {
|
|
676
675
|
* 'iter': 100
|
|
@@ -688,7 +687,7 @@ interface Namespace {
|
|
|
688
687
|
* @returns minimum absolute value
|
|
689
688
|
*
|
|
690
689
|
* @example
|
|
691
|
-
* var runif = require(
|
|
690
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
692
691
|
*
|
|
693
692
|
* var rand = runif( -10.0, 10.0, {
|
|
694
693
|
* 'iter': 100
|
|
@@ -714,7 +713,7 @@ interface Namespace {
|
|
|
714
713
|
* @returns iterator
|
|
715
714
|
*
|
|
716
715
|
* @example
|
|
717
|
-
* var runif = require(
|
|
716
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
718
717
|
*
|
|
719
718
|
* var rand = runif( -10.0, 10.0, {
|
|
720
719
|
* 'iter': 100
|
|
@@ -750,7 +749,7 @@ interface Namespace {
|
|
|
750
749
|
* @returns iterator
|
|
751
750
|
*
|
|
752
751
|
* @example
|
|
753
|
-
* var runif = require(
|
|
752
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
754
753
|
*
|
|
755
754
|
* var rand = runif( -10.0, 10.0, {
|
|
756
755
|
* 'iter': 100
|
|
@@ -786,7 +785,7 @@ interface Namespace {
|
|
|
786
785
|
* @returns iterator
|
|
787
786
|
*
|
|
788
787
|
* @example
|
|
789
|
-
* var runif = require(
|
|
788
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
790
789
|
*
|
|
791
790
|
* var rand = runif( -10.0, 10.0, {
|
|
792
791
|
* 'iter': 100
|
|
@@ -822,7 +821,7 @@ interface Namespace {
|
|
|
822
821
|
* @returns iterator
|
|
823
822
|
*
|
|
824
823
|
* @example
|
|
825
|
-
* var runif = require(
|
|
824
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
826
825
|
*
|
|
827
826
|
* var rand = runif( -10.0, 10.0, {
|
|
828
827
|
* 'iter': 100
|
|
@@ -858,7 +857,7 @@ interface Namespace {
|
|
|
858
857
|
* @returns iterator
|
|
859
858
|
*
|
|
860
859
|
* @example
|
|
861
|
-
* var runif = require(
|
|
860
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
862
861
|
*
|
|
863
862
|
* var rand = runif( -10.0, 10.0, {
|
|
864
863
|
* 'iter': 100
|
|
@@ -895,7 +894,7 @@ interface Namespace {
|
|
|
895
894
|
* @returns iterator
|
|
896
895
|
*
|
|
897
896
|
* @example
|
|
898
|
-
* var runif = require(
|
|
897
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
899
898
|
*
|
|
900
899
|
* var rand = runif( -10.0, 10.0, {
|
|
901
900
|
* 'iter': 100
|
|
@@ -931,7 +930,7 @@ interface Namespace {
|
|
|
931
930
|
* @returns iterator
|
|
932
931
|
*
|
|
933
932
|
* @example
|
|
934
|
-
* var runif = require(
|
|
933
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
935
934
|
*
|
|
936
935
|
* var rand = runif( -10.0, 10.0, {
|
|
937
936
|
* 'iter': 100
|
|
@@ -967,7 +966,7 @@ interface Namespace {
|
|
|
967
966
|
* @returns iterator
|
|
968
967
|
*
|
|
969
968
|
* @example
|
|
970
|
-
* var runif = require(
|
|
969
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
971
970
|
*
|
|
972
971
|
* var rand = runif( -10.0, 10.0, {
|
|
973
972
|
* 'iter': 100
|
|
@@ -1003,7 +1002,7 @@ interface Namespace {
|
|
|
1003
1002
|
* @returns iterator
|
|
1004
1003
|
*
|
|
1005
1004
|
* @example
|
|
1006
|
-
* var runif = require(
|
|
1005
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1007
1006
|
*
|
|
1008
1007
|
* var rand = runif( -10.0, 10.0, {
|
|
1009
1008
|
* 'iter': 100
|
|
@@ -1039,7 +1038,7 @@ interface Namespace {
|
|
|
1039
1038
|
* @returns iterator
|
|
1040
1039
|
*
|
|
1041
1040
|
* @example
|
|
1042
|
-
* var runif = require(
|
|
1041
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1043
1042
|
*
|
|
1044
1043
|
* var rand = runif( -10.0, 10.0, {
|
|
1045
1044
|
* 'iter': 100
|
|
@@ -1075,7 +1074,7 @@ interface Namespace {
|
|
|
1075
1074
|
* @returns iterator
|
|
1076
1075
|
*
|
|
1077
1076
|
* @example
|
|
1078
|
-
* var runif = require(
|
|
1077
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1079
1078
|
*
|
|
1080
1079
|
* var rand = runif( -10.0, 10.0, {
|
|
1081
1080
|
* 'iter': 100
|
|
@@ -1111,7 +1110,7 @@ interface Namespace {
|
|
|
1111
1110
|
* @returns iterator
|
|
1112
1111
|
*
|
|
1113
1112
|
* @example
|
|
1114
|
-
* var runif = require(
|
|
1113
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1115
1114
|
*
|
|
1116
1115
|
* var rand = runif( -10.0, 10.0, {
|
|
1117
1116
|
* 'iter': 100
|
|
@@ -1147,7 +1146,7 @@ interface Namespace {
|
|
|
1147
1146
|
* @returns iterator
|
|
1148
1147
|
*
|
|
1149
1148
|
* @example
|
|
1150
|
-
* var runif = require(
|
|
1149
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1151
1150
|
*
|
|
1152
1151
|
* var rand = runif( -10.0, 10.0, {
|
|
1153
1152
|
* 'iter': 100
|
|
@@ -1179,7 +1178,7 @@ interface Namespace {
|
|
|
1179
1178
|
* @returns product
|
|
1180
1179
|
*
|
|
1181
1180
|
* @example
|
|
1182
|
-
* var runif = require(
|
|
1181
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1183
1182
|
*
|
|
1184
1183
|
* var rand = runif( -10.0, 10.0, {
|
|
1185
1184
|
* 'iter': 100
|
|
@@ -1197,7 +1196,7 @@ interface Namespace {
|
|
|
1197
1196
|
* @returns range
|
|
1198
1197
|
*
|
|
1199
1198
|
* @example
|
|
1200
|
-
* var runif = require(
|
|
1199
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1201
1200
|
*
|
|
1202
1201
|
* var rand = runif( -10.0, 10.0, {
|
|
1203
1202
|
* 'iter': 100
|
|
@@ -1216,7 +1215,7 @@ interface Namespace {
|
|
|
1216
1215
|
* @returns corrected sample standard deviation
|
|
1217
1216
|
*
|
|
1218
1217
|
* @example
|
|
1219
|
-
* var runif = require(
|
|
1218
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1220
1219
|
*
|
|
1221
1220
|
* var rand = runif( -10.0, 10.0, {
|
|
1222
1221
|
* 'iter': 100
|
|
@@ -1238,7 +1237,7 @@ interface Namespace {
|
|
|
1238
1237
|
* @returns sum
|
|
1239
1238
|
*
|
|
1240
1239
|
* @example
|
|
1241
|
-
* var runif = require(
|
|
1240
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1242
1241
|
*
|
|
1243
1242
|
* var rand = runif( -10.0, 10.0, {
|
|
1244
1243
|
* 'iter': 100
|
|
@@ -1260,7 +1259,7 @@ interface Namespace {
|
|
|
1260
1259
|
* @returns sum of absolute values
|
|
1261
1260
|
*
|
|
1262
1261
|
* @example
|
|
1263
|
-
* var runif = require(
|
|
1262
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1264
1263
|
*
|
|
1265
1264
|
* var rand = runif( -10.0, 10.0, {
|
|
1266
1265
|
* 'iter': 100
|
|
@@ -1282,7 +1281,7 @@ interface Namespace {
|
|
|
1282
1281
|
* @returns sum of squared absolute values
|
|
1283
1282
|
*
|
|
1284
1283
|
* @example
|
|
1285
|
-
* var runif = require(
|
|
1284
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1286
1285
|
*
|
|
1287
1286
|
* var rand = runif( -10.0, 10.0, {
|
|
1288
1287
|
* 'iter': 100
|
|
@@ -1301,7 +1300,7 @@ interface Namespace {
|
|
|
1301
1300
|
* @returns unbiased sample variance
|
|
1302
1301
|
*
|
|
1303
1302
|
* @example
|
|
1304
|
-
* var runif = require(
|
|
1303
|
+
* var runif = require( '@stdlib/random-iter-uniform' );
|
|
1305
1304
|
*
|
|
1306
1305
|
* var rand = runif( -10.0, 10.0, {
|
|
1307
1306
|
* 'iter': 100
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/stats-iter",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Statistical function iterators.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -36,102 +36,103 @@
|
|
|
36
36
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@stdlib/stats-iter-cugmean": "^0.0
|
|
40
|
-
"@stdlib/stats-iter-cuhmean": "^0.0
|
|
41
|
-
"@stdlib/stats-iter-cumax": "^0.0
|
|
42
|
-
"@stdlib/stats-iter-cumaxabs": "^0.0
|
|
43
|
-
"@stdlib/stats-iter-cumean": "^0.0
|
|
44
|
-
"@stdlib/stats-iter-cumeanabs": "^0.0
|
|
45
|
-
"@stdlib/stats-iter-cumeanabs2": "^0.0
|
|
46
|
-
"@stdlib/stats-iter-cumidrange": "^0.0
|
|
47
|
-
"@stdlib/stats-iter-cumin": "^0.0
|
|
48
|
-
"@stdlib/stats-iter-cuminabs": "^0.0
|
|
49
|
-
"@stdlib/stats-iter-cuprod": "^0.0
|
|
50
|
-
"@stdlib/stats-iter-curange": "^0.0
|
|
51
|
-
"@stdlib/stats-iter-cusum": "^0.0
|
|
52
|
-
"@stdlib/stats-iter-cusumabs": "^0.0
|
|
53
|
-
"@stdlib/stats-iter-cusumabs2": "^0.0
|
|
54
|
-
"@stdlib/stats-iter-max": "^0.0
|
|
55
|
-
"@stdlib/stats-iter-maxabs": "^0.0
|
|
56
|
-
"@stdlib/stats-iter-mean": "^0.0
|
|
57
|
-
"@stdlib/stats-iter-meanabs": "^0.0
|
|
58
|
-
"@stdlib/stats-iter-meanabs2": "^0.0
|
|
59
|
-
"@stdlib/stats-iter-midrange": "^0.0
|
|
60
|
-
"@stdlib/stats-iter-min": "^0.0
|
|
61
|
-
"@stdlib/stats-iter-minabs": "^0.0
|
|
62
|
-
"@stdlib/stats-iter-mmax": "^0.0
|
|
63
|
-
"@stdlib/stats-iter-mmaxabs": "^0.0
|
|
64
|
-
"@stdlib/stats-iter-mmean": "^0.0
|
|
65
|
-
"@stdlib/stats-iter-mmeanabs": "^0.0
|
|
66
|
-
"@stdlib/stats-iter-mmeanabs2": "^0.0
|
|
67
|
-
"@stdlib/stats-iter-mmidrange": "^0.0
|
|
68
|
-
"@stdlib/stats-iter-mmin": "^0.0
|
|
69
|
-
"@stdlib/stats-iter-mminabs": "^0.0
|
|
70
|
-
"@stdlib/stats-iter-mprod": "^0.0
|
|
71
|
-
"@stdlib/stats-iter-mrange": "^0.0
|
|
72
|
-
"@stdlib/stats-iter-msum": "^0.0
|
|
73
|
-
"@stdlib/stats-iter-msumabs": "^0.0
|
|
74
|
-
"@stdlib/stats-iter-msumabs2": "^0.0
|
|
75
|
-
"@stdlib/stats-iter-prod": "^0.0
|
|
76
|
-
"@stdlib/stats-iter-range": "^0.0
|
|
77
|
-
"@stdlib/stats-iter-stdev": "^0.0
|
|
78
|
-
"@stdlib/stats-iter-sum": "^0.0
|
|
79
|
-
"@stdlib/stats-iter-sumabs": "^0.0
|
|
80
|
-
"@stdlib/stats-iter-sumabs2": "^0.0
|
|
81
|
-
"@stdlib/stats-iter-variance": "^0.0
|
|
82
|
-
"@stdlib/utils-define-read-only-property": "^0.0
|
|
39
|
+
"@stdlib/stats-iter-cugmean": "^0.2.0",
|
|
40
|
+
"@stdlib/stats-iter-cuhmean": "^0.2.0",
|
|
41
|
+
"@stdlib/stats-iter-cumax": "^0.2.0",
|
|
42
|
+
"@stdlib/stats-iter-cumaxabs": "^0.2.0",
|
|
43
|
+
"@stdlib/stats-iter-cumean": "^0.2.0",
|
|
44
|
+
"@stdlib/stats-iter-cumeanabs": "^0.2.0",
|
|
45
|
+
"@stdlib/stats-iter-cumeanabs2": "^0.2.0",
|
|
46
|
+
"@stdlib/stats-iter-cumidrange": "^0.2.0",
|
|
47
|
+
"@stdlib/stats-iter-cumin": "^0.2.0",
|
|
48
|
+
"@stdlib/stats-iter-cuminabs": "^0.2.0",
|
|
49
|
+
"@stdlib/stats-iter-cuprod": "^0.2.0",
|
|
50
|
+
"@stdlib/stats-iter-curange": "^0.2.0",
|
|
51
|
+
"@stdlib/stats-iter-cusum": "^0.2.0",
|
|
52
|
+
"@stdlib/stats-iter-cusumabs": "^0.2.0",
|
|
53
|
+
"@stdlib/stats-iter-cusumabs2": "^0.2.0",
|
|
54
|
+
"@stdlib/stats-iter-max": "^0.2.0",
|
|
55
|
+
"@stdlib/stats-iter-maxabs": "^0.2.0",
|
|
56
|
+
"@stdlib/stats-iter-mean": "^0.2.0",
|
|
57
|
+
"@stdlib/stats-iter-meanabs": "^0.2.0",
|
|
58
|
+
"@stdlib/stats-iter-meanabs2": "^0.2.0",
|
|
59
|
+
"@stdlib/stats-iter-midrange": "^0.2.0",
|
|
60
|
+
"@stdlib/stats-iter-min": "^0.2.0",
|
|
61
|
+
"@stdlib/stats-iter-minabs": "^0.2.0",
|
|
62
|
+
"@stdlib/stats-iter-mmax": "^0.2.0",
|
|
63
|
+
"@stdlib/stats-iter-mmaxabs": "^0.2.0",
|
|
64
|
+
"@stdlib/stats-iter-mmean": "^0.2.0",
|
|
65
|
+
"@stdlib/stats-iter-mmeanabs": "^0.2.0",
|
|
66
|
+
"@stdlib/stats-iter-mmeanabs2": "^0.2.0",
|
|
67
|
+
"@stdlib/stats-iter-mmidrange": "^0.2.0",
|
|
68
|
+
"@stdlib/stats-iter-mmin": "^0.2.0",
|
|
69
|
+
"@stdlib/stats-iter-mminabs": "^0.2.0",
|
|
70
|
+
"@stdlib/stats-iter-mprod": "^0.2.0",
|
|
71
|
+
"@stdlib/stats-iter-mrange": "^0.2.0",
|
|
72
|
+
"@stdlib/stats-iter-msum": "^0.2.0",
|
|
73
|
+
"@stdlib/stats-iter-msumabs": "^0.2.0",
|
|
74
|
+
"@stdlib/stats-iter-msumabs2": "^0.2.0",
|
|
75
|
+
"@stdlib/stats-iter-prod": "^0.2.0",
|
|
76
|
+
"@stdlib/stats-iter-range": "^0.2.0",
|
|
77
|
+
"@stdlib/stats-iter-stdev": "^0.2.0",
|
|
78
|
+
"@stdlib/stats-iter-sum": "^0.2.0",
|
|
79
|
+
"@stdlib/stats-iter-sumabs": "^0.2.0",
|
|
80
|
+
"@stdlib/stats-iter-sumabs2": "^0.2.0",
|
|
81
|
+
"@stdlib/stats-iter-variance": "^0.2.0",
|
|
82
|
+
"@stdlib/utils-define-read-only-property": "^0.2.0"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@stdlib/array-to-iterator": "^0.0
|
|
86
|
-
"@stdlib/assert-
|
|
87
|
-
"@stdlib/assert-is-
|
|
88
|
-
"@stdlib/assert-is-
|
|
89
|
-
"@stdlib/assert-is-
|
|
90
|
-
"@stdlib/
|
|
91
|
-
"@stdlib/
|
|
92
|
-
"@stdlib/
|
|
93
|
-
"@stdlib/
|
|
94
|
-
"@stdlib/
|
|
95
|
-
"@stdlib/
|
|
96
|
-
"@stdlib/
|
|
97
|
-
"@stdlib/
|
|
98
|
-
"@stdlib/stats-incr-
|
|
99
|
-
"@stdlib/stats-incr-
|
|
100
|
-
"@stdlib/stats-incr-
|
|
101
|
-
"@stdlib/stats-incr-
|
|
102
|
-
"@stdlib/stats-incr-
|
|
103
|
-
"@stdlib/stats-incr-
|
|
104
|
-
"@stdlib/stats-incr-
|
|
105
|
-
"@stdlib/stats-incr-
|
|
106
|
-
"@stdlib/stats-incr-
|
|
107
|
-
"@stdlib/stats-incr-
|
|
108
|
-
"@stdlib/stats-incr-
|
|
109
|
-
"@stdlib/stats-incr-
|
|
110
|
-
"@stdlib/stats-incr-
|
|
111
|
-
"@stdlib/stats-incr-
|
|
112
|
-
"@stdlib/stats-incr-
|
|
113
|
-
"@stdlib/stats-incr-
|
|
114
|
-
"@stdlib/stats-incr-
|
|
115
|
-
"@stdlib/stats-incr-
|
|
116
|
-
"@stdlib/stats-incr-
|
|
117
|
-
"@stdlib/stats-incr-
|
|
118
|
-
"@stdlib/stats-incr-
|
|
119
|
-
"@stdlib/stats-incr-
|
|
120
|
-
"@stdlib/stats-incr-
|
|
121
|
-
"@stdlib/stats-incr-
|
|
122
|
-
"@stdlib/stats-incr-
|
|
123
|
-
"@stdlib/stats-incr-
|
|
124
|
-
"@stdlib/stats-incr-
|
|
125
|
-
"@stdlib/stats-incr-
|
|
126
|
-
"@stdlib/
|
|
127
|
-
"@stdlib/
|
|
128
|
-
"@stdlib/
|
|
129
|
-
"@stdlib/utils-
|
|
130
|
-
"@stdlib/utils-keys": "^0.0.x",
|
|
85
|
+
"@stdlib/array-to-iterator": "^0.1.0",
|
|
86
|
+
"@stdlib/assert-is-function": "^0.1.1",
|
|
87
|
+
"@stdlib/assert-is-iterator-like": "^0.2.0",
|
|
88
|
+
"@stdlib/assert-is-number": "^0.1.1",
|
|
89
|
+
"@stdlib/assert-is-positive-integer": "^0.1.0",
|
|
90
|
+
"@stdlib/constants-float64-eps": "^0.1.1",
|
|
91
|
+
"@stdlib/iter-empty": "^0.1.1",
|
|
92
|
+
"@stdlib/math-base-assert-is-nan": "^0.1.1",
|
|
93
|
+
"@stdlib/math-base-special-abs": "^0.1.1",
|
|
94
|
+
"@stdlib/random-iter-randu": "^0.1.0",
|
|
95
|
+
"@stdlib/random-iter-uniform": "^0.1.0",
|
|
96
|
+
"@stdlib/stats-incr-gmean": "^0.2.0",
|
|
97
|
+
"@stdlib/stats-incr-hmean": "^0.2.0",
|
|
98
|
+
"@stdlib/stats-incr-max": "^0.2.0",
|
|
99
|
+
"@stdlib/stats-incr-maxabs": "^0.2.0",
|
|
100
|
+
"@stdlib/stats-incr-mean": "^0.2.0",
|
|
101
|
+
"@stdlib/stats-incr-meanabs": "^0.2.0",
|
|
102
|
+
"@stdlib/stats-incr-meanabs2": "^0.2.0",
|
|
103
|
+
"@stdlib/stats-incr-midrange": "^0.2.0",
|
|
104
|
+
"@stdlib/stats-incr-min": "^0.2.0",
|
|
105
|
+
"@stdlib/stats-incr-minabs": "^0.2.0",
|
|
106
|
+
"@stdlib/stats-incr-mmax": "^0.2.0",
|
|
107
|
+
"@stdlib/stats-incr-mmaxabs": "^0.2.0",
|
|
108
|
+
"@stdlib/stats-incr-mmean": "^0.2.0",
|
|
109
|
+
"@stdlib/stats-incr-mmeanabs": "^0.2.0",
|
|
110
|
+
"@stdlib/stats-incr-mmeanabs2": "^0.2.0",
|
|
111
|
+
"@stdlib/stats-incr-mmidrange": "^0.2.0",
|
|
112
|
+
"@stdlib/stats-incr-mmin": "^0.2.0",
|
|
113
|
+
"@stdlib/stats-incr-mminabs": "^0.2.0",
|
|
114
|
+
"@stdlib/stats-incr-mprod": "^0.2.0",
|
|
115
|
+
"@stdlib/stats-incr-mrange": "^0.2.0",
|
|
116
|
+
"@stdlib/stats-incr-msum": "^0.2.0",
|
|
117
|
+
"@stdlib/stats-incr-msumabs": "^0.2.0",
|
|
118
|
+
"@stdlib/stats-incr-msumabs2": "^0.2.0",
|
|
119
|
+
"@stdlib/stats-incr-prod": "^0.2.0",
|
|
120
|
+
"@stdlib/stats-incr-range": "^0.2.0",
|
|
121
|
+
"@stdlib/stats-incr-stdev": "^0.2.0",
|
|
122
|
+
"@stdlib/stats-incr-sum": "^0.2.0",
|
|
123
|
+
"@stdlib/stats-incr-sumabs": "^0.2.0",
|
|
124
|
+
"@stdlib/stats-incr-sumabs2": "^0.2.0",
|
|
125
|
+
"@stdlib/stats-incr-variance": "^0.2.0",
|
|
126
|
+
"@stdlib/string-format": "^0.2.0",
|
|
127
|
+
"@stdlib/symbol-iterator": "^0.2.0",
|
|
128
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
129
|
+
"@stdlib/utils-keys": "^0.1.0",
|
|
131
130
|
"proxyquire": "^2.0.0",
|
|
132
131
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
133
132
|
"istanbul": "^0.4.1",
|
|
134
|
-
"tap-
|
|
133
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
134
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
135
|
+
"@stdlib/bench": "^0.3.1"
|
|
135
136
|
},
|
|
136
137
|
"engines": {
|
|
137
138
|
"node": ">=0.10.0",
|
|
@@ -165,7 +166,7 @@
|
|
|
165
166
|
"iter"
|
|
166
167
|
],
|
|
167
168
|
"funding": {
|
|
168
|
-
"type": "
|
|
169
|
-
"url": "https://
|
|
169
|
+
"type": "opencollective",
|
|
170
|
+
"url": "https://opencollective.com/stdlib"
|
|
170
171
|
}
|
|
171
172
|
}
|
package/docs/types/test.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @license Apache-2.0
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2021 The Stdlib Authors.
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* tslint:disable:no-unused-expression */
|
|
20
|
-
|
|
21
|
-
import iter = require( './index' );
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
// TESTS //
|
|
25
|
-
|
|
26
|
-
// The exported value is the expected interface...
|
|
27
|
-
{
|
|
28
|
-
iter; // $ExpectType Namespace
|
|
29
|
-
}
|