time-to-botec/squiggle/node_modules/@stdlib/stats/base/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

82 KiB
Raw Blame History

Base Statistics

Standard library base statistical functions.

Usage

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

stats

Standard library base statistical functions.

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

The namespace contains the following sub-namespaces:

  • dists: standard library 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 ) );