Skip to content

Latest commit

 

History

History
 
 

README.md

Stats

Standard library statistical functions.

Usage

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

statistics

Standard library statistical functions.

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

The namespace exposes the following statistical tests:

In addition, it contains an assortment of functions for computing statistics incrementally as part of the incr sub-namespace.

Other statistical functions included are:

Examples

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

console.log( objectKeys( statistics ) );