BMI 계산기
임의의 데이터셋에서 평균, 중앙값, 최빈값, 표준편차, 분산 등을 계산하세요.
이 도구에 대해
숫자 목록을 입력하여 기술 통계를 계산하세요: 개수, 합계, 평균, 중앙값, 최빈값, 범위, 분산, 표준편차, 사분위수, 사분위범위. 정렬된 데이터셋과 빈도 표를 보여줍니다. 데이터 분석, 성적, 연구에 유용합니다.
사용 방법
- 1 쉼표, 공백 또는 새 줄로 구분된 숫자를 입력하세요.
- 2 입력할 때 통계가 자동으로 업데이트됩니다.
- 3 사분위수, 이상값, 정렬된 데이터셋을 확인하세요.
- 4 모집단과 표본 표준편차 간을 전환하세요.
What descriptive statistics tell you about a dataset
A list of numbers is hard to reason about by eye. Descriptive statistics compress that list into a handful of values that summarise its centre (where the typical value sits), its spread (how scattered the values are), and its shape (whether it is lopsided or has repeated values). This calculator computes all of them at once — count, sum, mean, median, mode, range, variance, standard deviation, and the quartiles — and updates the moment you type. Paste numbers separated by commas, spaces, or new lines; the parser ignores everything that is not a number.
Mean versus median: why both appear
The mean is the sum divided by the count — the balance point of the data. The median is the middle value when the data is sorted, or the average of the two middle values when there is an even count. They differ for a reason. The mean is pulled toward extreme values, while the median ignores them. For incomes, house prices, or response times, a few huge values inflate the mean far above what most people experience; the median stays near the typical case. When the mean and median are far apart, your data is skewed, and that gap is itself a useful signal.
Standard deviation: sample versus population
Variance and standard deviation measure spread: how far, on average, values sit from the mean. Standard deviation is just the square root of variance, expressed in the same units as your data. The crucial choice is the divisor, and this tool gives you both:
| Mode | Divides squared deviations by | Use when |
|---|---|---|
| Sample (s) | N − 1 | Your data is a sample drawn from a larger group |
| Population (σ) | N | Your data is the entire group you care about |
Dividing by N − 1 for a sample is called Bessel's correction. It nudges the estimate upward to compensate for the fact that a sample tends to underestimate the true spread of the population it came from. In practice you almost always have a sample, so Sample is the default here. The difference shrinks as your dataset grows: with 5 values the two answers differ noticeably, but with 500 they are nearly identical.
A worked example
Take the default dataset 4, 8, 15, 16, 23, 42 (six values). The sum is 108, so the mean is 108 ÷ 6 = 18. Sorted, the two middle values are 15 and 16, so the median is (15 + 16) ÷ 2 = 15.5 — already below the mean, hinting that the value 42 is dragging the average up. For the sample standard deviation, square each value's distance from 18, sum those squares, divide by 6 − 1 = 5, and take the square root, which gives roughly 13.4. Switch to Population and the divisor becomes 6, producing a slightly smaller spread of about 12.2. The range is 42 − 4 = 38.
Quartiles, IQR, and how they are computed here
Quartiles split the sorted data into four parts. Q1 is the 25% mark and Q3 is the 75% mark; the interquartile range (IQR = Q3 − Q1) captures the spread of the middle half and is far more resistant to outliers than the standard deviation. This calculator picks quartiles by position in the sorted list (a nearest-rank method) rather than interpolating between two values, so for small datasets your Q1 and Q3 will land exactly on data points. Note that different software uses different quartile conventions, so a textbook or spreadsheet may report slightly different quartile values for the same small dataset — none is "wrong," they simply use different rules.
Reading the mode and frequency table
The mode is the most frequently occurring value. A dataset can have no repeats (every value appears once), one mode, or several tied modes. The frequency table beside the results shows exactly how often each value occurs, sorted by count, with a small bar for each — useful for spotting clusters, data-entry duplicates, or a value that dominates the set.
Practical use cases
- Grades and test scores: find the class average, see how spread out the marks are, and check whether the median tells a different story than the mean.
- Quality control and measurements: monitor the standard deviation of a repeated measurement to judge consistency.
- Quick research summaries: paste survey responses or experiment readings to get the full set of descriptive statistics before deeper analysis.
- Spotting outliers: compare the IQR-based middle with the full range to see whether one extreme value is distorting your averages.
Common mistakes
- Using population std dev for sample data. If your numbers are a subset of a larger group, keep the Sample setting, or you will understate the true spread.
- Trusting the mean on skewed data. When the mean and median diverge, report the median too — the mean alone misleads.
- Expecting matching quartiles everywhere. Small-dataset quartiles vary by method; do not assume a mismatch with a spreadsheet is an error.
- Letting stray text break the input. Only numeric tokens are read, so units or labels mixed into the list are simply ignored rather than counted as zero.
Privacy
All statistics are computed locally in your browser as you type. Your dataset is never uploaded or stored — close the tab and it is gone. The tool works offline, making it safe for confidential figures.