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

74 lines (73 loc) 1.9 kB
{ "name": "als-statistics", "version": "2.1.0", "description": "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/column utilities.", "author": "Alex Sorkin", "license": "MIT", "type": "module", "main": "./lib/index.js", "module": "./lib/index.js", "exports": { ".": { "import": "./lib/index.js", "require": "./statistics.cjs", "default": "./lib/index.js" }, "./analyze/*": "./lib/analyze/*", "./table/*": "./lib/table/*", "./column": "./lib/column/index.js", "./utils/*": "./lib/utils/*", "./descriptive/*": "./lib/descriptive/*", "./statistics.js": "./statistics.js", "./package.json": "./package.json" }, "unpkg": "statistics.js", "jsdelivr": "statistics.js", "sideEffects": false, "directories": { "lib": "lib", "test": "tests", "goldens": "goldens" }, "files": [ "docs/", "lib/", "goldens/", "tests/", "scripts/", "statistics.js", "statistics.cjs", "readme.md", "LICENSE" ], "scripts": { "test": "node --test --experimental-test-coverage ./tests/**.test.js ./tests/**/**.test.js ./tests/**/**/**.test.js" }, "keywords": [ "statistics", "descriptive-statistics", "t-test", "anova", "welch-anova", "pearson-correlation", "spearman", "kendall-tau", "cronbach-alpha", "regression", "linear-regression", "logistic-regression", "dbscan", "hdbscan", "table-data", "column-data", "outlier-detection", "moving-average", "cdf" ], "devDependencies": { "als-browser-test": "^2.0.0", "als-pack": "^0.1.2", "fast-check": "^4.2.0", "seedrandom": "^3.0.5" } }