Base Statistics

Base (i.e., lower-level) statistical functions.

Usage

var stats = require( '@stdlib/stats/base' );

stats

Namespace containing "base" (i.e., lower-level) statistical functions.

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

The namespace contains the following sub-namespaces:

  • dists: base (i.e., lower-level) probability distribution modules.

The namespace contains the following statistical functions:

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var ns = require( '@stdlib/stats/base' );

console.log( objectKeys( ns ) );
Did you find this page helpful?