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