Stats

Statistical functions.

Usage

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

statistics

Namespace containing 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 and functions for computing statistics over iterators in the iterators namespace.

  • incr: incremental statistics.
  • iterators: statistical function iterators.

The base sub-namespace contains functions to calculate statistics alongside a dists namespace containing functions related to a wide assortment of probability distributions.

Other statistical functions included are:

Examples

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

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