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 = 17

✎ 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½
312 The most flamboyant clock 66 Sara Pascoe 17 5   5 1 5 5 5      
317 Reach the microwave in the fewest steps 67 Sara Pascoe 17 3   3 3 3 3 3      
322 Propel a pea along a red carpet 68 Sara Pascoe 17 3   3 3 3 3 3      
327 Make the best snowman 69 Sara Pascoe 17 4   4 2 4 4 4      
332 Balance swedes on a Swede 70 Sara Pascoe 17 1   1 5 1 1 1      
337 The heaviest shoebox-sized item 71 Sara Pascoe 17 1   1 5 1 1 1      
342 Surprise Alex 72 Sara Pascoe 17 2   2 4 2 2 2      
347 Release Alex 73 Sara Pascoe 17 5   5 1=     5 5 3 3.5
352 An upside-down condiment self-portrait 74 Sara Pascoe 17 4   4 2 4 4 3.75      
357 Burst all of the balloons 75 Sara Pascoe 17 2   2 4 2 2 2      
362 Unravel the tape 76 Sara Pascoe 17 2   2 4 2 2 2      
367 The best battery-operated item 77 Sara Pascoe 17 3   3 3 3 3 3      
372 Fill an eggcup with sweat 78 Sara Pascoe 17 4   4 2 4 4 4      
377 Make the best domino rally 79 Sara Pascoe 17 1   1 4= 2 1.5 1      
382 Buy a gift for the Taskmaster 80 Sara Pascoe 17 1   1 5 1 1 1      
387 Create the best flag meal 81 Sara Pascoe 17 3   3 3 3 3 3      
392 Anchor balloons using bread 82 Sara Pascoe 17 5   5 1 5 5 5      
397 The shiniest thing 83 Sara Pascoe 17 4   4 2 4 4 4      
402 Spread your clothes far and wide 84 Sara Pascoe 17 2   2 4 2 2 2      
407 Find out the lying old man’s occupation 85 Sara Pascoe 17 3   3 3 3 3 3      
412 Create an impressive special effect 86 Sara Pascoe 17 2   2 2=     2.31 3 2 2.5
417 Cover yourself in sticky notes 87 Sara Pascoe 17 3   3 3 3 3 3      
423 The most handsome relative 89 Sara Pascoe 17 1   1 4= 2 1.5 1      
428 Move water from one bucket to another 90 Sara Pascoe 17 2 1 3 4 2 2 2      
433 Play charades across a river 91 Sara Pascoe 17 0   0              
438 Create an impressive time-lapse or slow motion film 92 Sara Pascoe 17 5   5 1= 5 4.5 4.17      
443 The lowest unique number of doughnuts 93 Sara Pascoe 17 0   0              

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 18.603ms