UNPKG

als-statistics

Version:

A powerful and lightweight JavaScript library for descriptive statistics, regression, clustering, outlier detection, and noise analysis using a flexible table/column architecture.

8 lines (7 loc) 360 B
const MovingAverage = require('./ma'); const Noice = require('./noice'); const confidenceInterval = require('./confidence'); const mode = require('./mode'); const outliersZScore = require('./z-outliers'); const weightedMean = require('./weighted-mean'); module.exports = { MovingAverage, Noice, confidenceInterval, mode, outliersZScore, weightedMean, }