Skip to content

Commit 09de845

Browse files
committed
Auto-generated commit
1 parent 827527f commit 09de845

File tree

2 files changed

+223
-0
lines changed

2 files changed

+223
-0
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010

1111
### Features
1212

13+
- [`df6733b`](https://github.com/stdlib-js/stdlib/commit/df6733b7cba6fd7122f3bd01811b609b84b97ca8) - add `nanrange`, `nanrangeBy`, `rangeBy` to namespace
14+
- [`4b9ded3`](https://github.com/stdlib-js/stdlib/commit/4b9ded3ba52a495d3cb976df6df8969eea3c8fe4) - add `nanmidrangeBy`, `nanminBy`, `nanminabs` to namespace
15+
- [`21a310e`](https://github.com/stdlib-js/stdlib/commit/21a310e5967dc01d80ac4505efbf66bc896f01dd) - add `nanmeanors`, `nanmeanpn`, `nanmeanwd` to namespace
16+
- [`18e825e`](https://github.com/stdlib-js/stdlib/commit/18e825eb623226175d0eca6141c98a37dd3dc3ea) - add `minsorted`, `nanmaxBy`, `nanmaxabs` to namespace
17+
- [`01f982c`](https://github.com/stdlib-js/stdlib/commit/01f982c89b9078a67483965e574f26edeeb25c73) - add `mediansorted`, `midrange`, `midrangeBy` to namespace
18+
- [`1ae0613`](https://github.com/stdlib-js/stdlib/commit/1ae0613632ccd365a9888087978398fe3af8faea) - add `meankbn2`, `meanors`, `meanpn`, `meanpw`, `meanwd` to namespace
19+
- [`c649696`](https://github.com/stdlib-js/stdlib/commit/c6496960fbe675dfb2d90e57312407bc1d14cd64) - add `maxsorted` and `meankbn` to namespace
20+
- [`6e7b3a8`](https://github.com/stdlib-js/stdlib/commit/6e7b3a875e396ef3d5f00953a7b241f34286b4a1) - add `rangeabs` to namespace
1321
- [`ff26c6d`](https://github.com/stdlib-js/stdlib/commit/ff26c6dd3ee1f76fa6c8deac6f1ae2ee5226baaa) - add `stats/rangeabs` [(#9972)](https://github.com/stdlib-js/stdlib/pull/9972)
1422
- [`67315ee`](https://github.com/stdlib-js/stdlib/commit/67315ee65982c6354194c8baa3f22c6709bf25d3) - add `stats/base/ndarray/dstdevyc` [(#9927)](https://github.com/stdlib-js/stdlib/pull/9927)
1523
- [`ead840b`](https://github.com/stdlib-js/stdlib/commit/ead840b4a3cbadea51b04eb2614e379b411bd7ca) - add `stats/base/ndarray/sstdevyc` [(#9922)](https://github.com/stdlib-js/stdlib/pull/9922)
@@ -3657,6 +3665,14 @@ A total of 566 issues were closed in this release:
36573665

36583666
<details>
36593667

3668+
- [`df6733b`](https://github.com/stdlib-js/stdlib/commit/df6733b7cba6fd7122f3bd01811b609b84b97ca8) - **feat:** add `nanrange`, `nanrangeBy`, `rangeBy` to namespace _(by Athan Reines)_
3669+
- [`4b9ded3`](https://github.com/stdlib-js/stdlib/commit/4b9ded3ba52a495d3cb976df6df8969eea3c8fe4) - **feat:** add `nanmidrangeBy`, `nanminBy`, `nanminabs` to namespace _(by Athan Reines)_
3670+
- [`21a310e`](https://github.com/stdlib-js/stdlib/commit/21a310e5967dc01d80ac4505efbf66bc896f01dd) - **feat:** add `nanmeanors`, `nanmeanpn`, `nanmeanwd` to namespace _(by Athan Reines)_
3671+
- [`18e825e`](https://github.com/stdlib-js/stdlib/commit/18e825eb623226175d0eca6141c98a37dd3dc3ea) - **feat:** add `minsorted`, `nanmaxBy`, `nanmaxabs` to namespace _(by Athan Reines)_
3672+
- [`01f982c`](https://github.com/stdlib-js/stdlib/commit/01f982c89b9078a67483965e574f26edeeb25c73) - **feat:** add `mediansorted`, `midrange`, `midrangeBy` to namespace _(by Athan Reines)_
3673+
- [`1ae0613`](https://github.com/stdlib-js/stdlib/commit/1ae0613632ccd365a9888087978398fe3af8faea) - **feat:** add `meankbn2`, `meanors`, `meanpn`, `meanpw`, `meanwd` to namespace _(by Athan Reines)_
3674+
- [`c649696`](https://github.com/stdlib-js/stdlib/commit/c6496960fbe675dfb2d90e57312407bc1d14cd64) - **feat:** add `maxsorted` and `meankbn` to namespace _(by Athan Reines)_
3675+
- [`6e7b3a8`](https://github.com/stdlib-js/stdlib/commit/6e7b3a875e396ef3d5f00953a7b241f34286b4a1) - **feat:** add `rangeabs` to namespace _(by Athan Reines)_
36603676
- [`ff26c6d`](https://github.com/stdlib-js/stdlib/commit/ff26c6dd3ee1f76fa6c8deac6f1ae2ee5226baaa) - **feat:** add `stats/rangeabs` [(#9972)](https://github.com/stdlib-js/stdlib/pull/9972) _(by Sachin Pangal, Athan Reines, stdlib-bot)_
36613677
- [`50af83b`](https://github.com/stdlib-js/stdlib/commit/50af83bcaa184b672be143271ee32f0b9fba06e1) - **docs:** update copy _(by Athan Reines)_
36623678
- [`67315ee`](https://github.com/stdlib-js/stdlib/commit/67315ee65982c6354194c8baa3f22c6709bf25d3) - **feat:** add `stats/base/ndarray/dstdevyc` [(#9927)](https://github.com/stdlib-js/stdlib/pull/9927) _(by Samarth Kolarkar)_

lib/index.js

Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,15 @@ setReadOnly( ns, 'maxBy', require( './../max-by' ) );
216216
*/
217217
setReadOnly( ns, 'maxabs', require( './../maxabs' ) );
218218

219+
/**
220+
* @name maxsorted
221+
* @memberof ns
222+
* @readonly
223+
* @type {Function}
224+
* @see {@link module:@stdlib/stats/maxsorted}
225+
*/
226+
setReadOnly( ns, 'maxsorted', require( './../maxsorted' ) );
227+
219228
/**
220229
* @name mean
221230
* @memberof ns
@@ -225,6 +234,87 @@ setReadOnly( ns, 'maxabs', require( './../maxabs' ) );
225234
*/
226235
setReadOnly( ns, 'mean', require( './../mean' ) );
227236

237+
/**
238+
* @name meankbn
239+
* @memberof ns
240+
* @readonly
241+
* @type {Function}
242+
* @see {@link module:@stdlib/stats/meankbn}
243+
*/
244+
setReadOnly( ns, 'meankbn', require( './../meankbn' ) );
245+
246+
/**
247+
* @name meankbn2
248+
* @memberof ns
249+
* @readonly
250+
* @type {Function}
251+
* @see {@link module:@stdlib/stats/meankbn2}
252+
*/
253+
setReadOnly( ns, 'meankbn2', require( './../meankbn2' ) );
254+
255+
/**
256+
* @name meanors
257+
* @memberof ns
258+
* @readonly
259+
* @type {Function}
260+
* @see {@link module:@stdlib/stats/meanors}
261+
*/
262+
setReadOnly( ns, 'meanors', require( './../meanors' ) );
263+
264+
/**
265+
* @name meanpn
266+
* @memberof ns
267+
* @readonly
268+
* @type {Function}
269+
* @see {@link module:@stdlib/stats/meanpn}
270+
*/
271+
setReadOnly( ns, 'meanpn', require( './../meanpn' ) );
272+
273+
/**
274+
* @name meanpw
275+
* @memberof ns
276+
* @readonly
277+
* @type {Function}
278+
* @see {@link module:@stdlib/stats/meanpw}
279+
*/
280+
setReadOnly( ns, 'meanpw', require( './../meanpw' ) );
281+
282+
/**
283+
* @name meanwd
284+
* @memberof ns
285+
* @readonly
286+
* @type {Function}
287+
* @see {@link module:@stdlib/stats/meanwd}
288+
*/
289+
setReadOnly( ns, 'meanwd', require( './../meanwd' ) );
290+
291+
/**
292+
* @name mediansorted
293+
* @memberof ns
294+
* @readonly
295+
* @type {Function}
296+
* @see {@link module:@stdlib/stats/mediansorted}
297+
*/
298+
setReadOnly( ns, 'mediansorted', require( './../mediansorted' ) );
299+
300+
/**
301+
* @name midrange
302+
* @memberof ns
303+
* @readonly
304+
* @type {Function}
305+
* @see {@link module:@stdlib/stats/midrange}
306+
*/
307+
setReadOnly( ns, 'midrange', require( './../midrange' ) );
308+
309+
/**
310+
* @name midrangeBy
311+
* @memberof ns
312+
* @readonly
313+
* @type {Function}
314+
* @see {@link module:@stdlib/stats/midrange-by}
315+
*/
316+
setReadOnly( ns, 'midrangeBy', require( './../midrange-by' ) );
317+
228318
/**
229319
* @name min
230320
* @memberof ns
@@ -252,6 +342,15 @@ setReadOnly( ns, 'minBy', require( './../min-by' ) );
252342
*/
253343
setReadOnly( ns, 'minabs', require( './../minabs' ) );
254344

345+
/**
346+
* @name minsorted
347+
* @memberof ns
348+
* @readonly
349+
* @type {Function}
350+
* @see {@link module:@stdlib/stats/minsorted}
351+
*/
352+
setReadOnly( ns, 'minsorted', require( './../minsorted' ) );
353+
255354
/**
256355
* @name nanmax
257356
* @memberof ns
@@ -261,6 +360,24 @@ setReadOnly( ns, 'minabs', require( './../minabs' ) );
261360
*/
262361
setReadOnly( ns, 'nanmax', require( './../nanmax' ) );
263362

363+
/**
364+
* @name nanmaxBy
365+
* @memberof ns
366+
* @readonly
367+
* @type {Function}
368+
* @see {@link module:@stdlib/stats/nanmax-by}
369+
*/
370+
setReadOnly( ns, 'nanmaxBy', require( './../nanmax-by' ) );
371+
372+
/**
373+
* @name nanmaxabs
374+
* @memberof ns
375+
* @readonly
376+
* @type {Function}
377+
* @see {@link module:@stdlib/stats/nanmaxabs}
378+
*/
379+
setReadOnly( ns, 'nanmaxabs', require( './../nanmaxabs' ) );
380+
264381
/**
265382
* @name nanmean
266383
* @memberof ns
@@ -270,6 +387,42 @@ setReadOnly( ns, 'nanmax', require( './../nanmax' ) );
270387
*/
271388
setReadOnly( ns, 'nanmean', require( './../nanmean' ) );
272389

390+
/**
391+
* @name nanmeanors
392+
* @memberof ns
393+
* @readonly
394+
* @type {Function}
395+
* @see {@link module:@stdlib/stats/nanmeanors}
396+
*/
397+
setReadOnly( ns, 'nanmeanors', require( './../nanmeanors' ) );
398+
399+
/**
400+
* @name nanmeanpn
401+
* @memberof ns
402+
* @readonly
403+
* @type {Function}
404+
* @see {@link module:@stdlib/stats/nanmeanpn}
405+
*/
406+
setReadOnly( ns, 'nanmeanpn', require( './../nanmeanpn' ) );
407+
408+
/**
409+
* @name nanmeanwd
410+
* @memberof ns
411+
* @readonly
412+
* @type {Function}
413+
* @see {@link module:@stdlib/stats/nanmeanwd}
414+
*/
415+
setReadOnly( ns, 'nanmeanwd', require( './../nanmeanwd' ) );
416+
417+
/**
418+
* @name nanmidrangeBy
419+
* @memberof ns
420+
* @readonly
421+
* @type {Function}
422+
* @see {@link module:@stdlib/stats/nanmidrange-by}
423+
*/
424+
setReadOnly( ns, 'nanmidrangeBy', require( './../nanmidrange-by' ) );
425+
273426
/**
274427
* @name nanmin
275428
* @memberof ns
@@ -279,6 +432,42 @@ setReadOnly( ns, 'nanmean', require( './../nanmean' ) );
279432
*/
280433
setReadOnly( ns, 'nanmin', require( './../nanmin' ) );
281434

435+
/**
436+
* @name nanminBy
437+
* @memberof ns
438+
* @readonly
439+
* @type {Function}
440+
* @see {@link module:@stdlib/stats/nanmin-by}
441+
*/
442+
setReadOnly( ns, 'nanminBy', require( './../nanmin-by' ) );
443+
444+
/**
445+
* @name nanminabs
446+
* @memberof ns
447+
* @readonly
448+
* @type {Function}
449+
* @see {@link module:@stdlib/stats/nanminabs}
450+
*/
451+
setReadOnly( ns, 'nanminabs', require( './../nanminabs' ) );
452+
453+
/**
454+
* @name nanrange
455+
* @memberof ns
456+
* @readonly
457+
* @type {Function}
458+
* @see {@link module:@stdlib/stats/nanrange}
459+
*/
460+
setReadOnly( ns, 'nanrange', require( './../nanrange' ) );
461+
462+
/**
463+
* @name nanrangeBy
464+
* @memberof ns
465+
* @readonly
466+
* @type {Function}
467+
* @see {@link module:@stdlib/stats/nanrange-by}
468+
*/
469+
setReadOnly( ns, 'nanrangeBy', require( './../nanrange-by' ) );
470+
282471
/**
283472
* @name padjust
284473
* @memberof ns
@@ -306,6 +495,24 @@ setReadOnly( ns, 'pcorrtest', require( './../pcorrtest' ) );
306495
*/
307496
setReadOnly( ns, 'range', require( './../range' ) );
308497

498+
/**
499+
* @name rangeBy
500+
* @memberof ns
501+
* @readonly
502+
* @type {Function}
503+
* @see {@link module:@stdlib/stats/range-by}
504+
*/
505+
setReadOnly( ns, 'rangeBy', require( './../range-by' ) );
506+
507+
/**
508+
* @name rangeabs
509+
* @memberof ns
510+
* @readonly
511+
* @type {Function}
512+
* @see {@link module:@stdlib/stats/rangeabs}
513+
*/
514+
setReadOnly( ns, 'rangeabs', require( './../rangeabs' ) );
515+
309516
/**
310517
* @name ranks
311518
* @memberof ns

0 commit comments

Comments
 (0)