Base ndarray statistical functions.
var ns = require( '@stdlib/stats/base/ndarray' );Namespace containing base ndarray statistical functions.
var o = ns;
// returns {...}The namespace exposes the following APIs:
cumax( arrays ): compute the cumulative maximum value of a one-dimensional ndarray.dcumax( arrays ): compute the cumulative maximum value of a one-dimensional double-precision floating-point ndarray.dmax( arrays ): compute the maximum value of a one-dimensional double-precision floating-point ndarray.dztest( arrays ): compute a one-sample Z-test for a one-dimensional double-precision floating-point ndarray.maxBy( arrays, clbk[, thisArg ] ): compute the maximum value of a one-dimensional ndarray via a callback function.max( arrays ): compute the maximum value of a one-dimensional ndarray.scumax( arrays ): compute the cumulative maximum value of a one-dimensional single-precision floating-point ndarray.smax( arrays ): compute the maximum value of a one-dimensional single-precision floating-point ndarray.sztest( arrays ): compute a one-sample Z-test for a one-dimensional single-precision floating-point ndarray.
var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/stats/base/ndarray' );
console.log( objectKeys( ns ) );