Diferencia entre revisiones de «28/Agregación de calificación»

De MoodleDocs
m (Germanvaleroelizondo movió la página Agregación de categoría a Agregación de calificación: fix typo in name)
({{Actualizar}})
Línea 1: Línea 1:
{{Actualizar}}
{{Pendiente de traducir}}
{{Pendiente de traducir}}
{{Calificaciones}}
{{Calificaciones}}

Revisión del 15:38 26 jun 2015

Esta página necesita actualizarse con la información existente en la documentación vigente/moderna/actualizada en el idioma inglés original para Moodle. Se le sugiere al lector que consulte la página original en idioma inglés cuyo enlace está al fondo de esta página. y que, por favor, actualice esta información y quite la plantilla {{Actualizar}} cuando haya terminado.     (otras páginas pendientes de actualizar)


Nota: Pendiente de Traducir. ¡Anímese a traducir esta página!.     ( y otras páginas pendientes)

El menú desplegable de agregación le permite elegir la estrategia de agregación que será usada para calcular la calificación general de cada participante para una categoría de calificación. Las diferentes opciones se explican debajo.

The grades are first converted to percentage values (interval from 0 to 1), then aggregated using one of the strategies below and finally converted to the associated category item's range (between Minimum grade and Maximum grade).

Important: An empty grade is simply a missing gradebook entry, and could mean different things. For example, it could be a participant who hasn't yet submitted an assignment, an assignment submission not yet graded by the teacher, or a grade that has been manually deleted by the gradebook administrator. Caution in interpreting these "empty grades" is thus advised.


Media de calificaciones

La suma de todas las calificaciones dividida entre el número total de calificaciones.

   A1 70/100, A2 20/80, A3 10/10, máximo de categoría 100:
   (0.7 + 0.25 + 1.0)/3 = 0.65 --> 65/100

Media ponderada

Each grade item can be given a weight, which is then used in the arithmetic mean aggregation to influence the importance of each item in the overall mean. In simple terms, the category "total" will be equal to the sum of the scores in each grade item, these scores being multiplied by the grade items' weights, and that sum being finally divided by the sum of the weights, as shown in this example.

   A1 70/100 weight 10, A2 20/80 weight 5, A3 10/10 weight 3, category max 100:
   (0.7*10 + 0.25*5 + 1.0*3)/18 = 0.625 --> 62.5/100

Media ponderada simple

La diferencia con la Media ponderada es que la ponderación es calculada como Calificación Máxima - Calificación Mínima para cada ítem. La asignación de 100 puntos tiene ponderación de 100, la asignación de 10 puntos tiene ponderación de 10.

   A1 70/100, A2 20/80, A3 10/10, máximo de categoría 100:
   (0.7*100 + 0.25*80 + 1.0*10)/190 = 0.526 --> 52.6/100

When the "Simple weighted mean" aggregation strategy is used, a grade item can act as Extra credit for the category. This means that the grade item's maximum grade will not be added to the category total's maximum grade, but the item's grade will. For example, if A3 is marked as extra credit in the above calculation:

   A1 70/100, A2 20/80, A3 (extra credit) 10/10, category max 100:
   (0.7*100 + 0.25*80 + 1.0*10)/180 = 0.556 --> 55.6/100

Media de calificacones (con créditos extra)

Arithmetic mean with a twist. An old, now unsupported aggregation strategy provided here only for backward compatibility with old activities.

A value greater than 0 treats a grade item's grades as extra credit during aggregation. The number is a factor by which the grade value will be multiplied before it is added to the sum of all grades, but the item itself will not be counted in the division. For example:

  • Item 1 is graded 0-100 and its "Extra credit" value is set to 2
  • Item 2 is graded 0-100 and its "Extra credit" value is left at 0.0000
  • Item 3 is graded 0-100 and its "Extra credit" value is left at 0.0000
  • All 3 items belong to Category 1, which has "Mean of grades (with extra credits)" as its aggregation strategy
  • A student gets graded 20 on Item 1, 40 on Item 2 and 70 on Item 3
  • The student's total for Category 1 will be 95/100 since 20*2 + (40 + 70)/2 = 95

Mediana de calificaciones

The middle grade (or the mean of the two middle grades) when grades are arranged in order of size. The advantage over the mean is that it is not affected by outliers (grades which are uncommonly far from the mean).

   A1 70/100, A2 20/80, A3 10/10, category max 100:
   0.7 + 0.25 + 1.0 --> 0.70 --> 70/100

Cálificación más pequeña

The result is the smallest grade after normalisation. It is usually used in combination with Aggregate only non-empty grades.

   A1 70/100, A2 20/80, A3 10/10, category max 100:
   min(0.7 + 0.25 + 1.0) = 0.25 --> 25/100

Calificación más alta

The result is the highest grade after normalisation.

   A1 70/100, A2 20/80, A3 10/10, category max 100:
   max(0.7 + 0.25 + 1.0) = 1.0 --> 100/100

Moda de calificaciones

The mode is the grade that occurs the most frequently. It is more often used for non-numerical grades. The advantage over the mean is that it is not affected by outliers (grades which are uncommonly far from the mean). However it loses its meaning once there is more than one most frequently occurring grade (only one is kept), or when all the grades are different from each other.

   A1 70/100, A2 35/50, A3 20/80, A4 10/10, A5 7/10 category max 100:
   mode(0.7; 0.7; 0.25; 1.0; 0.7) = 0.7 --> 70/100

Natural (Moodle 2.8 y posteriores)

¡Nueva característica
en Moodle 2.8!

Esta es la suma de todos los valores de calificaciones, escalados por ponderación.

NOTA: ESTA SECCIÓN NECESITA ACTUALIZARSE PARA MOODLE 2.8

Las calificaciones de Escalas son ignoradas. Este es el único tipo que no convierte internamente las calificaciones a porcentajes. La calificación máxima del ítem de categoría asociado es calculada automáticamente como una suma de los máximos de todos los ítems agregados.

Suma de calificaciones (Moodle 2.7 y anteriores)

La suma de todos los valores de calificaciones.Este es el único tipo que no convierte internamente las calificaciones a porcentajes. La calificación máxima del ítem de categoría asociado es calculada automáticamente como una suma de los máximos de todos los ítems agregados.


   A1 70/100, A2 20/80, A3 10/10:
   70 + 20 + 10 = 100/190

When the "Sum of grades" aggregation strategy is used, a grade item can act as Extra credit for the category. This means that the grade item's maximum grade will not be added to the category total's maximum grade, but the item's grade will. Following is an example:

  • Item 1 is graded 0-100
  • Item 2 is graded 0-75
  • Item 1 has the "Act as extra credit" checkbox ticked, Item 2 doesn't.
  • Both items belong to Category 1, which has "Sum of grades" as its aggregation strategy
  • Category 1's total will be graded 0-75
  • A student gets graded 20 on Item 1 and 70 on Item 2
  • The student's total for Category 1 will be 75/75 (20+70 = 90 but Item 1 only acts as extra credit, so it brings the total to its maximum)

Tipos de agregación disponibles (Moodle 2.7 y anteriores)

Configuración de los tipos de agregación disponibles

In Moodle 1.9.5 onwards, a new available aggregation types setting in Administración > Calificaciones > Configuraciones de categoría de calificación enables administrators to reduce the number of aggregation types.

Tipos de agregación disponibles (Moodle 2.8 y posteriores)

Configuración de los tipos de agregación disponibles

La configuración por defecto es 'Natural' pero el administrador puede especificar otros tipos desde Administración del sitio > Administración > Calificaciones > Configuraciones de categoría de calificación.

Tome nota de que el reducir el número de tipos de agregación solamente resulta en que los tipos de agregación deshabilitados no aparecen ya en el menú desplegable del tipo de agregación. Todos los cálculos para las categorías de calificaciones existentes permanecen iguales, sin importar si el tipo de agregación hubiera sido deshabilitado por un administrador.