Skip to content

Latest commit

 

History

History
698 lines (453 loc) · 79.4 KB

README.md

File metadata and controls

698 lines (453 loc) · 79.4 KB

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 ) );