UNPKG

als-statistics

Version:

Modular JS statistics toolkit for Node.js and the browser: descriptive stats, correlations (Pearson/Spearman/Kendall), t-tests & ANOVA (Student/Welch), reliability (Cronbach’s alpha), regression (linear/logistic), clustering (DBSCAN/HDBSCAN), and table/co

13 lines (12 loc) 453 B
import CDF from "./cdf/index.js"; import { CompareMeans } from './compare-means/index.js'; import { Correlate } from './correlate/index.js'; import Clustering from './dbscan/index.js' // clustering import Regression from './regression/index.js' export default class Analyze { static CDF = CDF; static CompareMeans = CompareMeans; static Correlate = Correlate; static Clustering = Clustering; static Regression = Regression; }