pw-stat

1.0.1 • Public • Published

pw-stat

Statistics in JavaScript

Installation

npm install pw-stat

Getting Started

var stat = require('pw-stat');
 
var a = [
    [19, 28],
    [63, 32],
    [56, 96]
];
 
// Compute the mean of each column
var mean = stat.mean(a);
 
// Compute the covariance matrix
var cov = stat.cov(a);
 
console.log(mean); // [ 46, 52 ]
console.log(cov); // [ [ 559, 374 ], [ 374, 1456 ] ]

Documentation

Documentation is available at http://pwstegman.me/pw-stat/

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i pw-stat

      Weekly Downloads

      17

      Version

      1.0.1

      License

      MIT

      Unpacked Size

      351 kB

      Total Files

      18

      Last publish

      Collaborators

      • pwstegman