Skip to content
هذه الصفحة غير متوفرة بلغتك بعد. يتم عرض النسخة الإنجليزية.

Likert-Skalen

Bewertungsskalen zur Messung von Einstellungen und Meinungen.

Likert-Skalen

Likert-Skalen ermöglichen es Annotatoren, Elemente auf einer numerischen Skala zu bewerten, und werden häufig für Stimmungsintensität, Zustimmungsgrade und Qualitätsbewertungen eingesetzt.

Grundkonfiguration

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"

Konfigurationsoptionen

Skalengröße

Anzahl der Skalenpunkte festlegen:

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

Endpunktbeschriftungen

Die Endpunkte der Skala beschriften:

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

Mittelbeschriftung

Für ungerade Skalen den Mittelpunkt beschriften:

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

Alle Beschriftungen

Jeden Punkt der Skala beschriften:

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

Häufige Skalentypen

Zustimmungsskala (5-Punkte)

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

Häufigkeitsskala

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

Qualitätsskala

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

Wichtigkeitsskala

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

Zufriedenheitsskala

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

Tastaturkürzel

Nummernkürzel aktivieren:

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

Anzeigeoptionen

Horizontales Layout (Standard)

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

Zahlen anzeigen

Numerische Werte anzeigen:

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

Mehrere Likert-Skalen

Mehrere Aspekte bewerten:

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"

Multirate (Matrix-Bewertung)

Für die Bewertung mehrerer Elemente auf derselben Skala:

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

Dies wird als Matrix dargestellt, bei der jede Zeile ein Element und die Spalten Skalenpunkte sind.

Semantisches Differential

Zwischen zwei entgegengesetzten Konzepten bewerten:

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"

Pflicht oder Optional

Bewertung als Pflichtfeld markieren:

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

Standardwert

Einen vorausgewählten Wert festlegen:

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

Vollständiges Beispiel: Umfrageaufgabe

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

Bewährte Vorgehensweisen

  1. Ungerade Zahlen verwenden für Skalen mit einem neutralen Mittelpunkt
  2. Gerade Zahlen verwenden, um eine Richtung zu erzwingen (keine neutrale Option)
  3. 5 oder 7 Punkte funktionieren für die meisten Anwendungen am besten
  4. Endpunkte klar beschriften, um die Skala zu verankern
  5. Konsistenz wahren bei der Skalenrichtung im gesamten Projekt
  6. Tastaturkürzel in Betracht ziehen für schnellere Annotation