Skip to content
@addmaple/stats
Search
K
Main Navigation
Guide
API Reference
Examples
GitHub
Appearance
Menu
Return to top
On this page
pooledstdev
Calculate the pooled standard deviation of two arrays.
Try it out
Try it out
Run
import { init, pooledstdev } from '@addmaple/stats'; await init(); const data1 = [1, 2, 3, 4, 5]; const data2 = [6, 7, 8, 9, 10]; const result = pooledstdev(data1, data2); result;
Initializing library...