normalized_scores
- rigid
- the simplest possible normalization: 5 points for 1st (equal), 4 for 2nd (equal), etc.; null for team tasks (only two ranks)
- spread
- Distribute points from a pool of {5, 4, 3, 2, 1}, with rank ties between N people sharing the next N available point values. (〃)
- scale
- Multiply every score by some common factor to achieve a sum of 15 for the task; where this causes any individual score to exceed 5, regrettably abandon the 15-point target and scale down to ensure a maximum of 5. Note that this value does exist for team tasks due to being point- rather than rank-based.
- 5+3, 3+2, 3½+2½
- various ways to normalize team tasks based on rank
5 rows where task = 713
This data as json, CSV (advanced)
Suggested facets: base, points, rank, rigid, spread, scale
id ▲ | task | contestant | base | ± | points | rank | rigid | spread | scale | 5+3 | 3+2 | 3½+2½ |
---|---|---|---|---|---|---|---|---|---|---|---|---|
3453 | Recreate the picture from a massage chair 713 | Amelia Dimoldenberg 93 | 2 | 2 | 4 | 2 | 2 | 2.14 | ||||
3454 | Recreate the picture from a massage chair 713 | Carol Vorderman 94 | 1 | 1 | 5 | 1 | 1 | 1.07 | ||||
3455 | Recreate the picture from a massage chair 713 | Greg James 95 | 4 | 4 | 1= | 5 | 4.5 | 4.29 | ||||
3456 | Recreate the picture from a massage chair 713 | Mo Farah 96 | 3 | 3 | 3 | 3 | 3 | 3.21 | ||||
3457 | Recreate the picture from a massage chair 713 | Rebecca Lucy Taylor 97 | 4 | 4 | 1= | 5 | 4.5 | 4.29 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE normalized_scores ( id INTEGER PRIMARY KEY, task INTEGER REFERENCES tasks(id), contestant INTEGER REFERENCES people(id), base INTEGER, adjustment INTEGER, points INTEGER, rank TEXT, rigid REAL, spread REAL, scale REAL, '5+3' REAL, '3+2' REAL, '3½+2½' REAL );