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

✎ 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½
309 The most flamboyant clock 66 Dave Gorman 14 3   3 3 3 3 3      
314 Reach the microwave in the fewest steps 67 Dave Gorman 14 2   2 4 2 2 2      
319 Propel a pea along a red carpet 68 Dave Gorman 14
DQ
  0              
324 Make the best snowman 69 Dave Gorman 14 5   5 1 5 5 5      
329 Balance swedes on a Swede 70 Dave Gorman 14 3   3 3 3 3 3      
334 The heaviest shoebox-sized item 71 Dave Gorman 14 5   5 1 5 5 5      
339 Surprise Alex 72 Dave Gorman 14 3   3 3 3 3 3      
344 Release Alex 73 Dave Gorman 14 0   0              
349 An upside-down condiment self-portrait 74 Dave Gorman 14 3   3 3 3 3 2.81      
354 Burst all of the balloons 75 Dave Gorman 14 3   3 3 3 3 3      
359 Unravel the tape 76 Dave Gorman 14 3   3 3 3 3 3      
364 The best battery-operated item 77 Dave Gorman 14 1   1 5 1 1 1      
369 Fill an eggcup with sweat 78 Dave Gorman 14 3   3 3 3 3 3      
374 Make the best domino rally 79 Dave Gorman 14 4   4 2 4 4 4      
379 Buy a gift for the Taskmaster 80 Dave Gorman 14 5   5 1 5 5 5      
384 Create the best flag meal 81 Dave Gorman 14 5   5 1 5 5 5      
389 Anchor balloons using bread 82 Dave Gorman 14 3   3 3 3 3 3      
394 The shiniest thing 83 Dave Gorman 14 3   3 3 3 3 3      
399 Spread your clothes far and wide 84 Dave Gorman 14 3   3 3 3 3 3      
404 Find out the lying old man’s occupation 85 Dave Gorman 14 4   4 2 4 4 4      
409 Create an impressive special effect 86 Dave Gorman 14 3   3 1=     3.46 5 3 3.5
414 Cover yourself in sticky notes 87 Dave Gorman 14 4   4 2 4 4 4      
420 The most handsome relative 89 Dave Gorman 14 5   5 1 5 5 5      
425 Move water from one bucket to another 90 Dave Gorman 14
DQ
  0              
430 Play charades across a river 91 Dave Gorman 14 5   5 1=     5 5 3 3.5
435 Create an impressive time-lapse or slow motion film 92 Dave Gorman 14 3   3 3= 3 2.5 2.5      
440 The lowest unique number of doughnuts 93 Dave Gorman 14 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 23.139ms