TdlM / taskmaster

Menu
  • Make shortlink

normalized_scores

Table actions
  • Toggle column notes
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

27 rows where contestant = 16

✎ View and edit SQL

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½
311 The most flamboyant clock 66 Rob Beckett 16 2   2 4 2 2 2      
316 Reach the microwave in the fewest steps 67 Rob Beckett 16 5   5 1 5 5 5      
321 Propel a pea along a red carpet 68 Rob Beckett 16 4   4 2 4 4 4      
326 Make the best snowman 69 Rob Beckett 16 2   2 4 2 2 2      
331 Balance swedes on a Swede 70 Rob Beckett 16 2   2 4 2 2 2      
336 The heaviest shoebox-sized item 71 Rob Beckett 16 4   4 2 4 4 4      
341 Surprise Alex 72 Rob Beckett 16 5   5 1 5 5 5      
346 Release Alex 73 Rob Beckett 16 5   5 1=     5 5 3 3.5
351 An upside-down condiment self-portrait 74 Rob Beckett 16 2   2 4= 2 1.5 1.88      
356 Burst all of the balloons 75 Rob Beckett 16 5   5 1 5 5 5      
361 Unravel the tape 76 Rob Beckett 16 0   0              
366 The best battery-operated item 77 Rob Beckett 16 5   5 1 5 5 5      
371 Fill an eggcup with sweat 78 Rob Beckett 16 2   2 4 2 2 2      
376 Make the best domino rally 79 Rob Beckett 16 3   3 3 3 3 3      
381 Buy a gift for the Taskmaster 80 Rob Beckett 16 4   4 2 4 4 4      
386 Create the best flag meal 81 Rob Beckett 16 1   1 5 1 1 1      
391 Anchor balloons using bread 82 Rob Beckett 16 4   4 2 4 4 4      
396 The shiniest thing 83 Rob Beckett 16 2   2 4 2 2 2      
401 Spread your clothes far and wide 84 Rob Beckett 16 4   4 2 4 4 4      
406 Find out the lying old man’s occupation 85 Rob Beckett 16 2   2 4 2 2 2      
411 Create an impressive special effect 86 Rob Beckett 16 2   2 2=     2.31 3 2 2.5
416 Cover yourself in sticky notes 87 Rob Beckett 16 5   5 1 5 5 5      
422 The most handsome relative 89 Rob Beckett 16 3   3 3 3 3 3      
427 Move water from one bucket to another 90 Rob Beckett 16 4   4 2 4 4 4      
432 Play charades across a river 91 Rob Beckett 16 0   0              
437 Create an impressive time-lapse or slow motion film 92 Rob Beckett 16 5   5 1= 5 4.5 4.17      
442 The lowest unique number of doughnuts 93 Rob Beckett 16 5   5 1 5 5 5      

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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
);
Powered by Datasette · Queries took 20.02ms