Isomorphic Statistical Analysis using Javascript
npm install analysis

Under construction
#### Dependencies
#### Installation
```
npm install --save analysis
#### Sample usage
All samples use ES6/TypeScript syntax.
Using Node.JS:
`javascript
import * as Analysis from 'analysis'
/**
* TODO ...
*/
`
In the browser with webpack or browserify:
`javascript
// app.js with jQuery
var stats = require('analysis');
$.get('/api/data')
.then(data => stats.descriptive.mode(data));
`
#### API
``
TODO
#### Testing
Clone the project and install the dependencies:
``
git clone https://github.com/seikho/analysis
cd analysis && npm install
Run the unit tests:
```
npm run test