stat-functions
v1.0.5
Published
๐ stat-functions is a collection of common statistics formulas.
Readme
๐ stat-functions
A collection of common statistics formulas.
Install
npm i stat-functions
yarn add stat-functionsUsage
Import stat-functions methods into your project.
import { sum, mean } from 'stat-functions';Pass in dataset as an array of numbers (along with other arguments if applicable).
sum([ 1, 2, 3 ]); // 6
percentile([ 1, 2, 3 ], .3); // 1Available Methods
sum(dataset)
median(dataset)
mean(dataset)
mode(dataset)
range(dataset)
stdDev(dataset)
mad(dataset)
madWinsorize(dataset, madF)
percentile(dataset, k)
