From: nicolasconnault Date: Tue, 27 Nov 2007 10:00:45 +0000 (+0000) Subject: MDL-12312 Reviewed and slightly improved Petr's great help file X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=9d7e1f08fe608100ad567a3225e719a0e58b43c3;p=moodle.git MDL-12312 Reviewed and slightly improved Petr's great help file --- diff --git a/lang/en_utf8/help/grade/aggregation.html b/lang/en_utf8/help/grade/aggregation.html index c4f9a4db99..6bdb0de7db 100644 --- a/lang/en_utf8/help/grade/aggregation.html +++ b/lang/en_utf8/help/grade/aggregation.html @@ -2,7 +2,7 @@

This menu lets you choose the aggregation strategy that will be used to calculate each participant's overall grade for this category. The different options are explained below.

-

The grades are first converted to percentage values (interval from 0 to 1), then aggregated using one of +

The grades are first converted to percentage values (interval from 0 to 1, this is called normalisation), then aggregated using one of the function bellow and finally converted to requested range of associated category item (Minimum grade and Maximum grade).

Important: An empty grade is simply a missing gradebook entry, and could @@ -10,69 +10,58 @@ mean different things. For example, it could be a participant who hasn't yet sub 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.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
StrategyDescriptionExample (A1..A3 assignment grades)
Mean of gradesAll grades summed and divided by the total number of grades.A1 70/100, A2 20/80, A3 10/10, category max 100:
- (0.7 + 0.25 + 1.0)/3 = 0.65 --> 65/100
Weighted meanEach 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.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
Simple weighted meanThe difference from Weighted mean is that weight is calculated as Maximum grade - Minimum grade - for each item. 100 point assignment has weight 100, 10 point assignment has weight 10.A1 70/100, A2 20/80, A3 10/10, category max 100:
- (0.7*100 + 0.25*80 + 1.0*10)/190 = 0.526 --> 52.6/100
Mean of grades (with extra credits)Arithmetic mean with a twist. An old, now unsupported aggregation strategy provided here only - for backward compatibility with old activities. 
Median of gradesThe median is calculated by counting all the grades and selecting the grade that falls in the middle of that count +
+
Mean of grades
+
The sum of all grades divided by the total number of grades.
+
A1 70/100, A2 20/80, A3 10/10, category max 100:
+ (0.7 + 0.25 + 1.0)/3 = 0.65 --> 65/100
+ +
Weighted mean
+
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.
+
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
+ +
Simple weighted mean
+
The difference from Weighted mean is that weight is calculated as Maximum grade - Minimum grade + for each item. 100 point assignment has weight 100, 10 point assignment has weight 10.
+
A1 70/100, A2 20/80, A3 10/10, category max 100:
+ (0.7*100 + 0.25*80 + 1.0*10)/190 = 0.526 --> 52.6/100
+ +
Mean of grades (with extra credits)
+
Arithmetic mean with a twist. An old, now unsupported aggregation sdtategy provided here only + for backward compatibility with old activities.
+ +
Median of grades
+
The median is calculated by sorting all the grades and selecting the grade that falls in the middle of that (or the mean between the two middle grades if there is an even number of grades). 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.25 --> 25/100
Smallest gradeThe result is the relatively smallest grade. 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
Highest gradeThe result is the relatively highest grade.A1 70/100, A2 20/80, A3 10/10, category max 100:
- max(0.7 + 0.25 + 1.0) = 1.0 --> 100/100
Mode of gradesThe 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). 
Sum of gradesThe sum of all grade values. Scale grades are ignored. This is the only type that does not convert the - grades to percentages internally. The Maximum grade of associated category item is calculated - automatically as a sum of maximums from all aggregated items.A1 70/100, A2 20/80, A3 10/10:
- 70 + 20 + 10 = 100/190
+ 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.25 --> 25/100
+ +
Smallest grade
+
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
+ +
Highest grade
+
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
+ +
Mode of grades
+
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 occuring 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
+ +
Sum of grades
+
The sum of all grade values. Scale grades are ignored. This is the only type that does not convert the + grades to percentages internally (normalisation). The Maximum grade of associated category item is calculated + automatically as a sum of maximums from all aggregated items.
+
A1 70/100, A2 20/80, A3 10/10:
+ 70 + 20 + 10 = 100/190
+ + \ No newline at end of file