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
20 lines • 512 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="/node_modules/als-pack/pack.js"></script>
<title>Document</title>
</head>
<body>
<!-- Run to update tests list node scripts/tests-list -->
</body>
<script src="/node_modules/als-browser-test/index.js"></script>
<script>
const p = pack('./files.js')
.then(p => {
p.build();
eval(p.bundle()+'\nrunTests()')
})
</script>
</html>