Σ
SDCalc
入門応用·10 min

相対標準偏差(RSD)完全ガイド

相対標準偏差(RSD)の公式、計算例、FDA基準、製薬・分析化学の実験室での応用を網羅した完全ガイドです。

相対標準偏差とは?

相対標準偏差 (RSD)は、変動係数 (CV) としても知られ、標準偏差を平均の百分率で表した標準化された散布度の指標です。分析化学、製薬試験、品質管理の実験室において精度を評価するための基準的な指標です。

絶対的な標準偏差とは異なり、RSDを使えば異なるスケールや単位の測定間でばらつきを比較できます。5 mg/Lの標準偏差はある分析では優秀な値かもしれませんが、別の分析では許容できないかもしれません。RSDはすべてを共通のスケールに乗せます。

RSDとCVの違い

RSDと変動係数 (CV) は数学的に同一です。RSDは通常、百分率で表され(例:5.2%)、CVは小数で表されることがあります(0.052)。実験室の現場では、RSDの方が一般的な用語です。

RSDの公式と計算方法

相対標準偏差

RSD (%) = (s / x̄) × 100

sは標本標準偏差、x̄は標本平均です。計算は簡単です。

1

平均を計算する

すべての値を合計し、測定回数で割ります。
2

標準偏差を計算する

分散(平均からの2乗偏差の合計をn-1で割ったもの)の平方根を求めます。
3

除算して100を掛ける

SDを平均で割り、100を掛けて百分率で表します。
python
import numpy as np

def calculate_rsd(data):
    """Calculate Relative Standard Deviation"""
    mean = np.mean(data)
    std = np.std(data, ddof=1)  # Sample SD with Bessel's correction
    rsd = (std / mean) * 100
    return rsd

# Example: Analytical measurements
measurements = [98.5, 101.2, 99.8, 100.5, 99.1]
rsd = calculate_rsd(measurements)
print(f"RSD = {rsd:.2f}%")  # Output: RSD = 1.11%

RSD値の解釈

許容されるRSDは、用途、濃度レベル、規制要件によって異なります。

  • RSD < 2%:優秀な精度。バリデーション済みのHPLCアッセイや標準品で典型的
  • RSD 2〜5%:良好な精度。ほとんどの製薬品含量均一性試験で許容
  • RSD 5〜10%:中程度の精度。生物学的アッセイや微量分析で許容される場合がある
  • RSD 10〜15%:高いばらつき。免疫測定法やバイオ分析法で典型的
  • RSD > 15%:精度不良。分析法の問題や試料の不均一性を示す可能性

濃度の影響

RSDは通常、低濃度ほど大きくなります。これは測定の不確かさの相対的影響が大きくなるためです。ホルヴィッツの式はこの関係を予測します:分析対象物の濃度が10倍減少するごとに、RSDは2倍になります。

規制要件

規制機関は、異なる試験の種類に対して具体的なRSD要件を設定しています。

FDA/ICHガイドライン

システム適合性:RSD ≤ 2%(5注入) · 分析法の精度:通常RSD ≤ 2% · 含量均一性:USP <905>のRSD要件 · 溶出試験:初期時点でRSD ≤ 20%

バイオ分析法

QCサンプル:RSD ≤ 15%(LLOQでは≤20%) · キャリブレーター:少なくとも75%が±15%以内 · 被験者試料再分析:67%が20%以内

実験室での応用

RSDは分析科学全般で不可欠です。

  • 分析法バリデーション:分析法開発時の精度、反復性、中間精度の実証
  • システム適合性:HPLCシステムが仕様内で稼働していることの日常確認
  • 安定性試験:長期安定性プログラムにおける分析精度のモニタリング
  • 分析法移管:実験室間または機器間での精度の比較
  • 品質管理:製造および出荷試験におけるロット間の一貫性

計算例

例1:HPLCシステム適合性

5回の繰り返し注入でのピーク面積:1,245,678; 1,251,234; 1,248,901; 1,244,567; 1,249,890 平均 = 1,248,054 | SD = 2,689 | RSD = 0.22% — ≤2%基準を満たす

例2:含量均一性

10錠の定量値:99.2%, 101.5%, 98.8%, 100.3%, 99.7%, 100.8%, 99.1%, 101.2%, 100.1%, 99.5% 平均 = 100.02% | SD = 0.91% | RSD = 0.91% — 優秀な均一性

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.