Σ
SDCalc
入門實務應用·10 min

相對標準差 (RSD) 完整指南

相對標準差 (RSD) 完整指南,涵蓋公式、計算範例、FDA 接受標準,以及在製藥和分析化學實驗室中的應用。

什麼是相對標準差?

相對標準差 (RSD),也稱為變異係數 (CV),是一種標準化的離散程度衡量指標,將標準差表示為平均數的百分比。它是分析化學、製藥檢測和品質管控實驗室中評估精密度的黃金標準。

與絕對標準差不同,RSD 讓你能夠比較不同量尺或單位測量值的變異性。5 mg/L 的標準差在某個分析中可能很出色,但在另一個分析中可能不合格——RSD 將一切放在共同的尺度上。

RSD vs CV

RSD 和變異係數 (CV) 在數學上完全相同。RSD 通常以百分比表示(例如 5.2%),而 CV 可能以小數表示(0.052)。在實驗室環境中,RSD 是更常用的術語。

RSD 公式與計算

相對標準差

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

其中 s 是樣本標準差,x̄ 是樣本平均數。計算步驟很簡單:

1

計算平均數

將所有數值加總,除以測量次數。
2

計算標準差

求出變異數(偏差平方和除以 n-1)的平方根。
3

除法並乘以 100

用標準差除以平均數,再乘以 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 就會增加一倍。

法規要求

各國法規機構對不同檢測類型設有特定的 RSD 要求:

FDA/ICH 指引

系統適用性:RSD ≤ 2%(5 次注射) · 方法精密度:通常 RSD ≤ 2% · 含量均勻度:USP <905> 的 RSD 要求 · 溶出度:早期時間點 RSD ≤ 20%

生物分析方法

品管樣品:RSD ≤ 15%(LLOQ 處 ≤20%) · 校正標準品:至少 75% 在 ±15% 範圍內 · 受試樣品重新分析:67% 在 20% 範圍內

實驗室應用

RSD 在分析科學中不可或缺:

  • 方法驗證:在方法開發過程中展示精密度、重複性和中間精密度
  • 系統適用性:每日確認 HPLC 系統在規格範圍內正常運作
  • 安定性研究:在長期安定性計畫中監測分析精密度
  • 方法轉移:比較不同實驗室或儀器之間的精密度
  • 品質管控:製造和放行檢測中批次間的一致性

計算範例

範例 1:HPLC 系統適用性

五次重複注射的峰面積:1,245,678; 1,251,234; 1,248,901; 1,244,567; 1,249,890 平均值 = 1,248,054 | 標準差 = 2,689 | RSD = 0.22% - 通過 ≤2% 標準

範例 2:含量均勻度

十顆錠劑的含量測定:99.2%, 101.5%, 98.8%, 100.3%, 99.7%, 100.8%, 99.1%, 101.2%, 100.1%, 99.5% 平均值 = 100.02% | 標準差 = 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.