Skip to content

Escalas Likert

Escalas de calificación para medir actitudes y opiniones.

Escalas Likert

Las escalas Likert permiten a los anotadores calificar elementos en una escala numérica, comúnmente usadas para intensidad de sentimiento, niveles de acuerdo y calificaciones de calidad.

Configuración Básica

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"

Opciones de Configuración

Tamaño de la Escala

Define el número de puntos:

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

Etiquetas de Extremos

Etiqueta los extremos de la escala:

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

Etiqueta del Punto Medio

Para escalas con número impar, etiqueta el punto medio:

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

Todas las Etiquetas

Etiqueta cada punto de la escala:

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

Tipos Comunes de Escala

Escala de Acuerdo (5 puntos)

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

Escala de Frecuencia

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

Escala de Calidad

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

Escala de Importancia

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

Escala de Satisfacción

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

Atajos de Teclado

Habilita atajos con teclas numéricas:

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

Opciones de Visualización

Diseño Horizontal (Predeterminado)

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

Mostrar Números

Muestra los valores numéricos:

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

Múltiples Escalas Likert

Califica múltiples aspectos:

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 (Calificación Matricial)

Para calificar múltiples elementos en la misma escala:

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

Esto se muestra como una matriz donde cada fila es un elemento y las columnas son los puntos de la escala.

Diferencial Semántico

Califica entre dos conceptos opuestos:

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"

Requerido vs Opcional

Haz la calificación obligatoria:

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

Valor Predeterminado

Establece un valor preseleccionado:

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

Ejemplo Completo: Tarea de Encuesta

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

Mejores Prácticas

  1. Usa números impares para escalas con un punto medio neutral
  2. Usa números pares para forzar una dirección (sin opción neutral)
  3. 5 o 7 puntos funcionan mejor para la mayoría de las aplicaciones
  4. Etiqueta los extremos claramente para anclar la escala
  5. Sé consistente en todo tu proyecto con la dirección de la escala
  6. Considera atajos de teclado para una anotación más rápida