gaussian-helper
v1.0.5
Published
A simple helper to calculate gaussian distribution
Downloads
140
Readme
gaussian-helper
A simple tool to help you with Gaussian calculations.
Installation
yarn add gaussian-helperUsage
import { getMedian, getMean, getStandardDeviation } from 'gaussian-helper';
const values = [10, 2, 3, 4, 5];
const median = getMedian(values); // 4
const mean = getMean(values); // 4.800000000000001
const standardDeviation = getStandardDeviation([1, 2, 3, 4, 5]); // 1.4142135623730951