Σ
SDCalc
入門基礎·12 min

標準偏差の完全ガイド

標準偏差を徹底的に解説。公式、ステップごとの計算方法、実世界の例、標本と母集団の使い分けまで、初心者にもわかりやすく説明します。

標準偏差とは?

標準偏差とは、データセットにおけるばらつきや散らばりの度合いを数値で表す統計的な指標です。簡単に言えば、各データが平均値からどれくらい離れているかを示します。

こう考えてみてください。ある学生グループのテストの点数がある場合、標準偏差を見れば、ほとんどの学生が似たような点数を取ったのか(低い標準偏差)、それとも点数がばらばらだったのか(高い標準偏差)がわかります。

Visual Comparison

Low SD (σ = 0.5)

Data clustered tightly around the mean

High SD (σ = 2)

Data spread widely from the mean

なぜ標準偏差は重要なのか?

標準偏差は、あらゆる分野の意思決定に不可欠な知見を提供するため、最も広く使われている統計指標のひとつです。

  • 金融:投資リスクやポートフォリオのボラティリティを測定
  • 製造業:品質管理とシックスシグマによる工程改善
  • 科学:測定の不確かさや実験精度の報告
  • 教育:テスト成績の分布や偏差値の分析
  • 医療:臨床試験や患者データのばらつきの把握

標準偏差の公式

標準偏差の公式は、標本を扱うか母集団全体を扱うかによって2種類あります。

母集団の標準偏差

σ = √[Σ(xᵢ - μ)² / N]

標本の標準偏差

s = √[Σ(xᵢ - x̄)² / (n-1)]

記号の意味

σ(シグマ) = 母集団の標準偏差 · s = 標本の標準偏差 · Σ = 合計 · xᵢ = 各データ点 · μ(ミュー) = 母集団の平均 · x̄(エックスバー) = 標本の平均 · N = 母集団のサイズ · n = 標本のサイズ

なぜ (n-1) で割るのか?

標本を扱う場合、nではなく(n-1)で割ります。これはベッセルの補正と呼ばれ、母集団の標準偏差の不偏推定量を得るためです。

ステップごとの計算方法

データセット 4, 8, 6, 5, 3 の標本標準偏差を計算してみましょう。

1

平均を計算する

平均 = (4 + 8 + 6 + 5 + 3) / 5 = 26 / 5 = 5.2
2

各データの偏差を求める

4 - 5.2 = -1.2 · 8 - 5.2 = 2.8 · 6 - 5.2 = 0.8 · 5 - 5.2 = -0.2 · 3 - 5.2 = -2.2
3

各偏差を2乗する

(-1.2)² = 1.44 · (2.8)² = 7.84 · (0.8)² = 0.64 · (-0.2)² = 0.04 · (-2.2)² = 4.84
4

2乗偏差の合計を求める

1.44 + 7.84 + 0.64 + 0.04 + 4.84 = 14.8
5

(n-1)で割る

分散 = 14.8 / (5-1) = 14.8 / 4 = 3.7
6

平方根を取る

標準偏差 = √3.7 = 1.924

便利なヒント

標準偏差計算機を使えば、どんなデータセットでも即座にステップごとの解答付きで標準偏差を計算できます。

結果の解釈

標準偏差の値が何を意味するかを正しく理解することが、適切な判断のために不可欠です。

標準偏差の値解釈
低い標準偏差データ点が平均値の近くに集まっている。一貫性が高い精密機械で製造された部品の寸法
高い標準偏差データ点が広く散らばっている。ばらつきが大きい日々の株価変動
ゼロの標準偏差すべてのデータ点が同一定額商品の価格

経験則(68-95-99.7ルール)

正規分布に従うデータでは、全データの68%が平均から標準偏差1つ分の範囲に収まります。95%は標準偏差2つ分、99.7%は標準偏差3つ分の範囲に収まります。

実世界の例

例1:試験の点数

30人の学生がテストを受けました。平均点は75点、標準偏差は10点です。 解釈: 学生の約68%が65点から85点の間の得点でした。95点を取った学生は非常に優秀で(平均より標準偏差2つ分上)、55点は苦戦していることを示します(平均より標準偏差2つ分下)。

例2:製造品質管理

ある工場で直径10mmのボルトを製造しています。100本のボルトを測定したところ、平均は10.02mm、標準偏差は0.05mmでした。 解釈: この製造工程は適切に管理されています。ボルトの99.7%は9.87mmから10.17mmの範囲(±3σ)に収まります。仕様が10mm ± 0.2mmであれば、この工程は品質基準を十分に満たしています。

よくある間違い

間違った公式の使用

標本データに母集団の標準偏差(N)の公式を使ってはいけません。真のばらつきを過小評価してしまいます。

外れ値の無視

標準偏差は外れ値に敏感です。たった1つの極端な値でも標準偏差が大幅に増加することがあります。外れ値を含むデータセットでは、中央絶対偏差(MAD)の使用を検討してください。

正規分布の誤った仮定

経験則(68-95-99.7)は正規分布に従うデータにのみ適用されます。これらの割合を適用する前に、データの分布を確認してください。

Further Reading

How to Read This Article

A statistics tutorial is a practical interpretation guide, not just a formula dump. It refers to the assumptions, notation, and reporting language that analysts need when they explain a result to a teacher, manager, client, or reviewer. The article body covers the specific topic, while the sections below create a common interpretation frame that readers can reuse across related metrics.

Reading goalWhat to focus onCommon mistake
DefinitionWhat the metric is and what quantity it summarizesTreating the formula as self-explanatory
Formula choiceSample versus population assumptions and notationUsing n when n-1 is required or vice versa
InterpretationWhether the result indicates concentration, spread, or riskCalling a large value good or bad without context

Frequently Asked Questions

How should I interpret a high standard deviation?

A high standard deviation means the observations are spread farther from the mean on average. Whether that spread is acceptable depends on the context: wide dispersion might signal risk in finance, instability in manufacturing, or genuine natural variation in scientific data.

Why do some articles mention n while others mention n-1?

The denominator reflects the difference between population and sample formulas. Population variance and population standard deviation use N because the full dataset is known. Sample variance and sample standard deviation often use n-1 because Bessel’s correction reduces bias when estimating population spread from a sample.

What is a statistical interpretation guide?

A statistical interpretation guide is a page that moves beyond arithmetic and explains meaning. It tells you what a metric is, when the formula applies, and how to describe the result in plain English without overstating certainty.

Can I cite this article in a report?

You should cite the underlying authoritative reference for formal work whenever possible. This page is best used as an explanatory bridge that helps you understand the concept before quoting the original standard or handbook.

Why include direct citations on every article page?

Direct citations give readers a route to verify the definition, notation, and assumptions. That improves trust and reduces the chance that a simplified explanation is mistaken for the entire technical standard.

Authoritative References

These sources define the concepts referenced most often across our articles. Bessel's correction is a sample adjustment, variance is a squared measure of spread, and standard deviation is the square root of variance expressed in the same units as the data.