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

28 rows where contestant = 15

✎ 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½
310 The most flamboyant clock 66 Paul Chowdhry 15 1   1 5 1 1 1      
315 Reach the microwave in the fewest steps 67 Paul Chowdhry 15 0   0              
320 Propel a pea along a red carpet 68 Paul Chowdhry 15 2   2 4 2 2 2      
325 Make the best snowman 69 Paul Chowdhry 15 1   1 5 1 1 1      
330 Balance swedes on a Swede 70 Paul Chowdhry 15 4   4 2 4 4 4      
335 The heaviest shoebox-sized item 71 Paul Chowdhry 15 2   2 4 2 2 2      
340 Surprise Alex 72 Paul Chowdhry 15 1   1 5 1 1 1      
345 Release Alex 73 Paul Chowdhry 15 0   0              
350 An upside-down condiment self-portrait 74 Paul Chowdhry 15 2   2 4= 2 1.5 1.88      
355 Burst all of the balloons 75 Paul Chowdhry 15 4   4 2 4 4 4      
360 Unravel the tape 76 Paul Chowdhry 15 4   4 2 4 4 4      
365 The best battery-operated item 77 Paul Chowdhry 15 4   4 2 4 4 4      
370 Fill an eggcup with sweat 78 Paul Chowdhry 15 5   5 1 5 5 5      
375 Make the best domino rally 79 Paul Chowdhry 15 5   5 1 5 5 5      
380 Buy a gift for the Taskmaster 80 Paul Chowdhry 15 2   2 4 2 2 2      
385 Create the best flag meal 81 Paul Chowdhry 15 4   4 2 4 4 4      
390 Anchor balloons using bread 82 Paul Chowdhry 15 2   2 4 2 2 2      
395 The shiniest thing 83 Paul Chowdhry 15 5   5 1 5 5 5      
400 Spread your clothes far and wide 84 Paul Chowdhry 15 1   1 5 1 1 1      
405 Find out the lying old man’s occupation 85 Paul Chowdhry 15 1   1 5 1 1 1      
410 Create an impressive special effect 86 Paul Chowdhry 15 3   3 1=     3.46 5 3 3.5
415 Cover yourself in sticky notes 87 Paul Chowdhry 15 1   1 5 1 1 1      
418 Have fun on a bouncy castle 88 Paul Chowdhry 15 0   0              
421 The most handsome relative 89 Paul Chowdhry 15 1   1 4= 2 1.5 1      
426 Move water from one bucket to another 90 Paul Chowdhry 15 3   3 3 3 3 3      
431 Play charades across a river 91 Paul Chowdhry 15 5   5 1=     5 5 3 3.5
436 Create an impressive time-lapse or slow motion film 92 Paul Chowdhry 15 3   3 3= 3 2.5 2.5      
441 The lowest unique number of doughnuts 93 Paul Chowdhry 15 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 27.609ms