Σ
SDCalc
上級上級·14 min

複数グループのプール標準偏差

t検定やANOVAで複数のグループのデータを結合するためのプール標準偏差の計算方法を学びましょう。

プール標準偏差とは?

プール標準偏差は、2つ以上のグループの分散推定値を結合し、単一の加重推定値を得る手法です。等分散を仮定する2標本t検定では不可欠です。

考え方は単純です。2つのグループが同じ母分散を持つ母集団から来ていると考えるなら、データを結合してその共通の分散のより良い推定値を得ることができます。データが多いほど、より精密な推定になります。

こう考えてみてください。グループAから20個、グループBから30個の観測値があり、両グループの真の分散が同じである場合、小さな標本からそれぞれ推定する代わりに、50個の観測値を使って分散を推定できるのです。

プールすべき場面

母集団の分散が等しいと信じる理由がある場合にのみ、標準偏差をプールしてください。プールする前に、レーベン検定やF検定でこの仮定を確認しましょう。

プール標準偏差の公式

2つのグループの場合、プール標準偏差は次のようになります。

2群のプール標準偏差

sp = √[((n₁-1)s₁² + (n₂-1)s₂²) / (n₁+n₂-2)]

ここでn₁とn₂は標本サイズ、s₁とs₂は各標本の標準偏差です。

k個のグループ(ANOVAなど)の場合、公式は一般化されます。

多群のプール標準偏差

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

公式が分子と分母の両方で(n-1)項を使用していることに注目してください。この重み付けにより、大きな標本がプール推定値により多く寄与します。大きな標本はより信頼性の高い分散推定を提供するため、これは適切な方法です。

前提となる仮定

プール標準偏差は分散の等質性—すべてのグループが同じ母分散を共有していること—を仮定します。この仮定が特に重要になるのは以下の場合です。

  • 標本サイズが不等な場合(大きいグループの分散が小さい場合は特に問題)
  • 最大分散と最小分散の比が2〜3を超える場合
  • 標本サイズが小さい場合(大きな標本はこの仮定の違反に対してより頑健)

分散が異なる場合

分散が等しくない場合は、プールt検定の代わりにウェルチのt検定を使用するか、分散を個別に推定してください。ウェルチの検定は等分散を仮定せず、デフォルトのアプローチとして推奨されることがあります。

計算例

シナリオ: 2つのクラスのテスト成績を比較する。

  • クラスA: n₁ = 25、平均 = 78、s₁ = 12
  • クラスB: n₂ = 30、平均 = 82、s₂ = 14

プール標準偏差の計算:

sp = √[((25-1)(12)² + (30-1)(14)²) / (25+30-2)] sp = √[(24×144 + 29×196) / 53] sp = √[(3456 + 5684) / 53] sp = √[9140 / 53] = √172.45 = 13.13

プール標準偏差13.13は、個々の標準偏差(12と14)の間の値で、大きい標本の方に寄った値になっています。このプール値はその後、t検定の公式やCohenのd計算に使用されます。

統計的応用

  • 独立標本t検定: プール標準偏差は、平均の差の標準誤差を計算するために使用されます。
  • Cohenのd効果量: 効果量はプール標準偏差で標準化されます:d = (M₁ - M₂) / sp
  • 分散分析(ANOVA): ANOVAの平均2乗誤差(MSE)は、本質的にすべてのグループにわたるプール分散推定値です。
  • メタ分析: 研究を統合する際、プール推定値は異なる文脈間で効果を標準化するのに役立ちます。

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.