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
10 rows where contestant = 30
This data as json, CSV (advanced)
Suggested facets: base, points, rank, rigid, spread
id ▲ | task | contestant | base | ± | points | rank | rigid | spread | scale | 5+3 | 3+2 | 3½+2½ |
---|---|---|---|---|---|---|---|---|---|---|---|---|
914 | The most embarrassing item 195 | Katherine Ryan 30 | 4 | 4 | 2 | 4 | 4 | 4 | ||||
919 | Throw an exercise ball into a bath or put the coconuts in a trolley 196 | Katherine Ryan 30 | 3 | 3 | 3 | 3 | 3 | 3 | ||||
924 | Blow something substantial off a table 197 | Katherine Ryan 30 | 4 | 4 | 2= | 4 | 3.5 | 3.75 | ||||
929 | Perform a miracle 198 | Katherine Ryan 30 | 5 | 5 | 1= | 5 | 4.5 | 3.57 | ||||
934 | The second longest T-word 199 | Katherine Ryan 30 | 4 | 4 | 2= | 4 | 3 | 3.33 | ||||
940 | The best thing 201 | Katherine Ryan 30 | 1 | 1 | 5 | 1 | 1 | 0.938 | ||||
945 | Find out what’s in the briefcase 202 | Katherine Ryan 30 | 1 | 1 | 5 | 1 | 1 | 1 | ||||
950 | Make a delicious mask 203 | Katherine Ryan 30 | 3 | 3 | 3 | 3 | 3 | 2.81 | ||||
955 | Make a mess and then clean it up 204 | Katherine Ryan 30 | 5 | 5 | 1 | 5 | 5 | 4.41 | ||||
960 | Record the most steps on your pedometers 205 | Katherine Ryan 30 | 5 | 5 | 1 | 5 | 5 | 5 |
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 );