Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Base Statistics

Standard library base statistical functions.

Usage

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

math

Standard library base statistical functions.

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

The namespace contains the following sub-namespaces:

  • dists: standard library probability distribution modules.

Examples

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

console.log( objectKeys( ns ) );