Skip to content
@addmaple/stats
Search
K
Main Navigation
Guide
API Reference
Examples
GitHub
Appearance
Menu
Return to top
On this page
weightedMedian
Calculate the weighted median.
Try it out
Try it out
Run
import { init, weightedMedian } from '@addmaple/stats'; await init(); const data = [1, 2, 3, 4, 5]; const weights = [1, 1, 2, 1, 1]; const result = weightedMedian(data, weights); result;
Initializing library...