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
25 lines (22 loc) • 663 B
JavaScript
import { ttestTool } from './tools/ttest.js';
import { anovaTool } from './tools/anova.js';
import { pearsonTool } from './tools/pearson.js';
import { regressionTool }from './tools/regression.js';
import { cronbachTool } from './tools/cronbach.js';
import { dbscanTool } from './tools/dbscan.js';
import { cdfTool } from './tools/cdf.js';
export const ALL_TOOLS = [
ttestTool,
anovaTool,
pearsonTool,
regressionTool,
cronbachTool,
dbscanTool,
cdfTool,
];
// Епсилоны по умолчанию/пер-инструмент
export const EPS = {
default: 1e-8,
cronbach: 1e-6,
dbscan: 1e-10,
};