短い答え
この計算機は、完全な統計概要を 1 回のパスで返します。つまり、中心の平均と中央値、最頻値の最頻値、広がりの範囲と標準偏差、異常値に耐える広がりの測定値の四分位数 (Q1、Q2、Q3) と四分位間範囲 (IQR) です。これらの数値を組み合わせると、個々の値をすべて確認する必要がなく、データ セットの中心、広がり、形状が説明されます。
重要なポイント
- Mean, median, and mode each describe "center" differently — comparing them reveals whether data is symmetric or skewed.
- IQR (Q3 − Q1) はデータの中央の 50% の広がりを捕捉し、範囲や標準偏差よりも外れ値の影響をはるかに受けません。
- 歪度は非対称性を表します。右に歪んだデータ (平均値 > 中央値) は、高い値に向かって長い裾を持っています。左に歪んだ (平均 < 中央値) は、低い値に向かって長い裾を持ちます。
- 単一の統計だけで全体を語ることはできません。中心、広がり、形状をまとめて完全に要約することで、1 つの数値だけからデータ セットを読み間違えるのを防ぐことができます。
完全な統計概要を一緒に読む
| 統計 | それがあなたに伝えること |
|---|---|
| Mean | Arithmetic center, sensitive to outliers |
| 中央値 | 中間値、異常値に強い |
| モード | 最頻値 |
| 範囲 | フルスプレッド(最大値−最小値)、外れ値に非常に敏感 |
| 標準偏差 | Typical distance from the mean |
| IQR | 中間のスプレッド 50%、異常値に強い |
歪度: 平均値と中央値が明らかにするもの
Data: 20, 22, 23, 24, 25, 26, 28, 120 — one clear outlier at the end.
平均 = 288 ÷ 8 = 36
Median = (24 + 25) / 2 = 24.5
The mean (36) sits well above the median (24.5) — a clear sign of right skew. A single value of 120 was enough to drag the mean up by more than 11 points while the median barely moved, since the median only cares about which value is in the middle position, not how far the outlier sits from everything else.
Worked example: comparing IQR and range
同じデータセット (20、22、23、24、25、26、28、120) を使用します。
Range = 120 − 20 = 100
Q1 (median of lower half 20,22,23,24) = 22.5
Q3 (上半分の中央値 25,26,28,120) = 27
IQR = 27 − 22.5 = 4.5
The range (100) is dominated entirely by the single outlier, while the IQR (4.5) reflects how tightly packed the bulk of the data actually is — a dramatic illustration of why IQR is preferred for spread when outliers are a concern.
避けるべきよくある間違い
- Reading only the mean and assuming it represents a "typical" value — always check the median too, especially with small samples or suspected outliers.
- Treating range as a reliable spread measure — a single extreme value can inflate it dramatically, as shown above.
- 繰り返される値のないデータにはモードが必要です。すべての値が一意であるセットにはモードがありません。
- Misreading skew direction — right-skewed means the tail (and the mean) point toward higher values, not that most of the data is high.
関連する電卓
- Average Calculator — 幾何平均や調和平均とともに平均を調べます。
- 標準偏差計算機 — 特にサンプルと母集団のオプションによる広がりに焦点を当てます。
- 平均値、中央値、モードおよび範囲の計算機 — 4 つの主要な対策の軽量でより焦点を絞ったバージョンを取得します。
- Z スコア計算機 — 個々の値がこのデータセットの平均からどれだけ離れているかを確認します。