Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seikho/analysis
JavaScript statistics library for the behavioural sciences
https://github.com/seikho/analysis
nodejs statistics statistics-library typescript
Last synced: about 2 months ago
JSON representation
JavaScript statistics library for the behavioural sciences
- Host: GitHub
- URL: https://github.com/seikho/analysis
- Owner: Seikho
- Created: 2015-07-17T03:13:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-02T09:09:41.000Z (almost 6 years ago)
- Last Synced: 2024-10-19T18:17:27.024Z (2 months ago)
- Topics: nodejs, statistics, statistics-library, typescript
- Language: TypeScript
- Homepage:
- Size: 240 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### Analysis.js
An statistics library for the behavioural sciences written in TypeScript.[![NPM version](http://img.shields.io/npm/v/analysis.svg?style=flat)](https://www.npmjs.org/package/analysis)
[![Travis build status](http://img.shields.io/travis/Seikho/analysis/master.svg?style=flat)](https://travis-ci.org/Seikho/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
```