Skip to content

andrewvanhemelrijck/stat-functions

Repository files navigation

📈 stat-functions

A collection of common statistics formulas.


Install

npm i stat-functions
yarn add stat-functions

Usage

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); // 1

Available Methods

  • sum(dataset)

  • median(dataset)

  • mean(dataset)

  • mode(dataset)

  • range(dataset)

  • stdDev(dataset)

  • mad(dataset)

  • madWinsorize(dataset, madF)

  • percentile(dataset, k)

About

A collection of common statistics formulas.

Resources

Stars

Watchers

Forks

Packages

No packages published