time-to-botec/js/node_modules/@stdlib/stats/iter
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00
..
cugmean feat: add the node modules 2022-12-03 12:44:49 +00:00
cuhmean feat: add the node modules 2022-12-03 12:44:49 +00:00
cumax feat: add the node modules 2022-12-03 12:44:49 +00:00
cumaxabs feat: add the node modules 2022-12-03 12:44:49 +00:00
cumean feat: add the node modules 2022-12-03 12:44:49 +00:00
cumeanabs feat: add the node modules 2022-12-03 12:44:49 +00:00
cumeanabs2 feat: add the node modules 2022-12-03 12:44:49 +00:00
cumidrange feat: add the node modules 2022-12-03 12:44:49 +00:00
cumin feat: add the node modules 2022-12-03 12:44:49 +00:00
cuminabs feat: add the node modules 2022-12-03 12:44:49 +00:00
cuprod feat: add the node modules 2022-12-03 12:44:49 +00:00
curange feat: add the node modules 2022-12-03 12:44:49 +00:00
cusum feat: add the node modules 2022-12-03 12:44:49 +00:00
cusumabs feat: add the node modules 2022-12-03 12:44:49 +00:00
cusumabs2 feat: add the node modules 2022-12-03 12:44:49 +00:00
docs/types feat: add the node modules 2022-12-03 12:44:49 +00:00
lib feat: add the node modules 2022-12-03 12:44:49 +00:00
max feat: add the node modules 2022-12-03 12:44:49 +00:00
maxabs feat: add the node modules 2022-12-03 12:44:49 +00:00
mean feat: add the node modules 2022-12-03 12:44:49 +00:00
meanabs feat: add the node modules 2022-12-03 12:44:49 +00:00
meanabs2 feat: add the node modules 2022-12-03 12:44:49 +00:00
midrange feat: add the node modules 2022-12-03 12:44:49 +00:00
min feat: add the node modules 2022-12-03 12:44:49 +00:00
minabs feat: add the node modules 2022-12-03 12:44:49 +00:00
mmax feat: add the node modules 2022-12-03 12:44:49 +00:00
mmaxabs feat: add the node modules 2022-12-03 12:44:49 +00:00
mmean feat: add the node modules 2022-12-03 12:44:49 +00:00
mmeanabs feat: add the node modules 2022-12-03 12:44:49 +00:00
mmeanabs2 feat: add the node modules 2022-12-03 12:44:49 +00:00
mmidrange feat: add the node modules 2022-12-03 12:44:49 +00:00
mmin feat: add the node modules 2022-12-03 12:44:49 +00:00
mminabs feat: add the node modules 2022-12-03 12:44:49 +00:00
mprod feat: add the node modules 2022-12-03 12:44:49 +00:00
mrange feat: add the node modules 2022-12-03 12:44:49 +00:00
msum feat: add the node modules 2022-12-03 12:44:49 +00:00
msumabs feat: add the node modules 2022-12-03 12:44:49 +00:00
msumabs2 feat: add the node modules 2022-12-03 12:44:49 +00:00
prod feat: add the node modules 2022-12-03 12:44:49 +00:00
range feat: add the node modules 2022-12-03 12:44:49 +00:00
stdev feat: add the node modules 2022-12-03 12:44:49 +00:00
sum feat: add the node modules 2022-12-03 12:44:49 +00:00
sumabs feat: add the node modules 2022-12-03 12:44:49 +00:00
sumabs2 feat: add the node modules 2022-12-03 12:44:49 +00:00
variance feat: add the node modules 2022-12-03 12:44:49 +00:00
package.json feat: add the node modules 2022-12-03 12:44:49 +00:00
README.md feat: add the node modules 2022-12-03 12:44:49 +00:00

Iterator Statistics

Standard library functions for computing statistics over iterators.

Usage

var ns = require( '@stdlib/stats/iter' );

ns

Standard library functions for computing statistics over iterators.

var o = ns;
// returns {...}

Examples

var getKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/stats/iter' );

console.log( getKeys( ns ) );