Skip to content

مقاييس ليكرت

مقاييس التقييم لقياس المواقف والآراء.

مقاييس ليكرت

تتيح مقاييس ليكرت للموسِّمين تقييم العناصر على مقياس رقمي، وتُستخدم عادةً لشدة المشاعر، ومستويات الاتفاق، وتقييمات الجودة.

الإعداد الأساسي

yaml
annotation_schemes:
  - annotation_type: likert
    name: agreement
    description: "How much do you agree with this statement?"
    size: 5
    min_label: "Strongly Disagree"
    max_label: "Strongly Agree"

خيارات الإعدادات

حجم المقياس

حدد عدد النقاط:

yaml
size: 5  # 5-point scale (1-5)
size: 7  # 7-point scale (1-7)
size: 10 # 10-point scale (1-10)

تسميات النقاط النهائية

وسِّم النقاط النهائية للمقياس:

yaml
min_label: "Not at all"
max_label: "Extremely"

التسمية الوسطى

للمقاييس ذات الأعداد الفردية، وسِّم نقطة المنتصف:

yaml
size: 5
min_label: "Strongly Disagree"
max_label: "Strongly Agree"
mid_label: "Neutral"  # Shown at position 3

جميع التسميات

وسِّم كل نقطة على المقياس:

yaml
size: 5
labels:
  1: "Strongly Disagree"
  2: "Disagree"
  3: "Neutral"
  4: "Agree"
  5: "Strongly Agree"

أنواع المقاييس الشائعة

مقياس الاتفاق (5 نقاط)

yaml
- annotation_type: likert
  name: agreement
  size: 5
  min_label: "Strongly Disagree"
  max_label: "Strongly Agree"

مقياس التكرار

yaml
- annotation_type: likert
  name: frequency
  size: 5
  labels:
    1: "Never"
    2: "Rarely"
    3: "Sometimes"
    4: "Often"
    5: "Always"

مقياس الجودة

yaml
- annotation_type: likert
  name: quality
  size: 5
  min_label: "Very Poor"
  max_label: "Excellent"

مقياس الأهمية

yaml
- annotation_type: likert
  name: importance
  size: 5
  min_label: "Not Important"
  max_label: "Extremely Important"

مقياس الرضا

yaml
- annotation_type: likert
  name: satisfaction
  size: 5
  min_label: "Very Dissatisfied"
  max_label: "Very Satisfied"

اختصارات لوحة المفاتيح

فعّل اختصارات مفاتيح الأرقام:

yaml
- annotation_type: likert
  name: rating
  size: 5
  keyboard_shortcuts: true  # 1-5 keys select ratings

خيارات العرض

التخطيط الأفقي (الافتراضي)

yaml
- annotation_type: likert
  name: rating
  size: 5
  display: horizontal

عرض الأرقام

عرض القيم الرقمية:

yaml
- annotation_type: likert
  name: rating
  size: 5
  show_numbers: true

مقاييس ليكرت متعددة

تقييم جوانب متعددة:

yaml
annotation_schemes:
  - annotation_type: likert
    name: clarity
    description: "How clear is this text?"
    size: 5
    min_label: "Very Unclear"
    max_label: "Very Clear"
 
  - annotation_type: likert
    name: relevance
    description: "How relevant is this text?"
    size: 5
    min_label: "Not Relevant"
    max_label: "Highly Relevant"
 
  - annotation_type: likert
    name: quality
    description: "Overall quality rating"
    size: 5
    min_label: "Poor"
    max_label: "Excellent"

التقييم المتعدد (تقييم مصفوفي)

لتقييم عناصر متعددة على نفس المقياس:

yaml
- annotation_type: multirate
  name: aspect_ratings
  description: "Rate each aspect"
  items:
    - "Clarity"
    - "Accuracy"
    - "Completeness"
    - "Relevance"
  size: 5
  min_label: "Poor"
  max_label: "Excellent"

يُعرض كمصفوفة حيث كل صف عنصر والأعمدة نقاط المقياس.

التفاضل الدلالي

التقييم بين مفهومين متعاكسين:

yaml
- annotation_type: likert
  name: tone
  size: 7
  min_label: "Formal"
  max_label: "Informal"
 
- annotation_type: likert
  name: sentiment
  size: 7
  min_label: "Negative"
  max_label: "Positive"

مطلوب مقابل اختياري

اجعل التقييم مطلوبًا:

yaml
- annotation_type: likert
  name: rating
  size: 5
  required: true

القيمة الافتراضية

حدد قيمة محددة مسبقًا:

yaml
- annotation_type: likert
  name: rating
  size: 5
  default: 3  # Pre-select middle value

مثال كامل: مهمة استبيان

yaml
task_name: "Content Quality Survey"
 
annotation_schemes:
  - annotation_type: likert
    name: clarity
    description: "How clear and understandable is this content?"
    size: 5
    min_label: "Very Unclear"
    max_label: "Very Clear"
    keyboard_shortcuts: true
 
  - annotation_type: likert
    name: accuracy
    description: "How accurate is the information?"
    size: 5
    min_label: "Very Inaccurate"
    max_label: "Very Accurate"
    keyboard_shortcuts: true
 
  - annotation_type: likert
    name: usefulness
    description: "How useful would this be for the target audience?"
    size: 5
    min_label: "Not Useful"
    max_label: "Very Useful"
    keyboard_shortcuts: true
 
  - annotation_type: text
    name: feedback
    description: "Any additional feedback? (Optional)"
    required: false

أفضل الممارسات

  1. استخدم أعدادًا فردية للمقاييس ذات نقطة وسطى محايدة
  2. استخدم أعدادًا زوجية لفرض اتجاه (بدون خيار محايد)
  3. 5 أو 7 نقاط تعمل بشكل أفضل لمعظم التطبيقات
  4. وسِّم النقاط النهائية بوضوح لترسيخ المقياس
  5. كن متسقًا عبر مشروعك في اتجاه المقياس
  6. فكّر في اختصارات لوحة المفاتيح لتوسيم أسرع