Simple Statistics
npm install simple-statistics
A JavaScript implementation of descriptive, regression, and inference statistics.


Implemented in literate JavaScript with no dependencies, designed to work
in all modern browsers (including IE) as well as in node.js.
* :green_book: API Documentation
* :chart_with_upwards_trend: Benchmarks
* :kissing: A list of other statistics libraries
*I'm using Node.js, Webpack, Browserify, Rollup, or another module bundler,
and install packages from npm.**
* First, install the simple-statistics module, using npm install simple-statistics,
then include the code with require or import:
* I use the require function to use modules in my project. (most likely)
* When you use require, you have the freedom to assign the module to any
variable name you want, but you need to specify the module's name exactly:
in this case, 'simple-statistics'. The require method returns an object
with all of the module's methods attached to it.
var ss = require('simple-statistics')import to use modules in my project. I'm probably using Babel, @std/esm, Webpack, or Rollup.importas ss from 'simple-statistics'
import {min} from 'simple-statistics'ss. You can reassign this variable toHTML
`
* I want to use ES6 modules in a browser and I'm willing to only support new browsers to do it
* This module works great with the ?module query parameter of unpkg. If you
specify type='module' in your script tag, you'll be able to import simple-statistics
directly - through index.js and with true ES6 import syntax and behavior.
`js
``