Skip to content

Latest commit

 

History

History
761 lines (495 loc) · 87.5 KB

README.md

File metadata and controls

761 lines (495 loc) · 87.5 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 ) );