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

9 lines (8 loc) 268 B
import Dbscan from "./dbscan.js"; import Hdbscan from "./hdbscan.js"; import computeDistances from "./compute-dist.js"; export default class Clustering { static Dbscan = Dbscan static Hdbscan = Hdbscan static computeDistances = computeDistances }