Σ
SDCalc
مبتدئالتطبيقات·10 min

الدليل الشامل للانحراف المعياري النسبي (RSD)

دليل شامل للانحراف المعياري النسبي (RSD) يشمل الصيغة وأمثلة الحساب ومعايير القبول من FDA والتطبيقات في مختبرات الصيدلة والكيمياء التحليلية.

ما هو الانحراف المعياري النسبي؟

الانحراف المعياري النسبي (RSD)، المعروف أيضًا بمعامل التباين (CV)، هو مقياس موحد للتشتت يعبّر عن الانحراف المعياري كنسبة مئوية من المتوسط. إنه المعيار الذهبي لتقييم الدقة في الكيمياء التحليلية واختبار الأدوية ومختبرات ضبط الجودة.

على عكس الانحراف المعياري المطلق، يتيح لك RSD مقارنة التباين عبر القياسات ذات المقاييس أو الوحدات المختلفة. قد يكون انحراف معياري مقداره 5 ملغ/لتر ممتازًا لتحليل معين لكنه غير مقبول لآخر — RSD يضع كل شيء على مقياس مشترك.

RSD مقابل CV

RSD ومعامل التباين (CV) متطابقان رياضيًا. يُعبَّر عن RSD عادةً كنسبة مئوية (مثل 5.2%)، بينما قد يُعبَّر عن CV كرقم عشري (0.052). في البيئات المخبرية، RSD هو المصطلح الأكثر شيوعًا.

صيغة RSD وطريقة الحساب

الانحراف المعياري النسبي

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

حيث s هو الانحراف المعياري للعينة وx̄ هو متوسط العينة. الحساب بسيط:

1

حساب المتوسط

اجمع جميع القيم واقسم على عدد القياسات.
2

حساب الانحراف المعياري

أوجد الجذر التربيعي للتباين (مجموع مربعات الانحرافات عن المتوسط مقسومًا على n-1).
3

القسمة والضرب

اقسم الانحراف المعياري على المتوسط، ثم اضرب في 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 عادةً عند التركيزات المنخفضة بسبب التأثير النسبي الأكبر لعدم اليقين في القياس. تتنبأ معادلة هوروتز بهذه العلاقة: يتضاعف RSD لكل انخفاض بمقدار 10 أضعاف في تركيز المادة المحللة.

المتطلبات التنظيمية

تضع الهيئات التنظيمية متطلبات RSD محددة لأنواع الاختبارات المختلفة:

إرشادات FDA/ICH

ملاءمة النظام: RSD ≤ 2% (5 حقنات) · دقة الطريقة: RSD ≤ 2% عادةً · تجانس المحتوى: متطلبات RSD في USP <905> · الذوبان: RSD ≤ 20% في النقاط الزمنية المبكرة

الطرق التحليلية الحيوية

عينات ضبط الجودة: RSD ≤ 15% (≤20% عند LLOQ) · المعايرات: 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.