learn.howToCalculate
learn.whatIsHeading
Mean, median, and mode are the three main measures of central tendency. They describe the "centre" of a dataset in different ways — mean uses all values, median uses position, and mode uses frequency.
단계별 가이드
- 1Mean: add all values, divide by count
- 2Median: sort the data, find the middle value (or average the two middle values for even count)
- 3Mode: find the most frequently occurring value
풀어진 예시
입력
Dataset: 2, 3, 3, 5, 7, 10
결과
Mean=5, Median=4, Mode=3
Median=(3+5)/2=4
입력
Incomes: $30k,$35k,$40k,$200k
결과
Mean=$76.25k, Median=$37.5k
Outlier skews mean
계산할 준비가 되셨나요? 무료 Mean Median Mode 계산기를 사용해 보세요
직접 시도해 보세요 →