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

✎ 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½
171 The most important document 38 Katherine Ryan 11 3   3 3 3 3 2.81      
176 Place the exercise balls on the yoga mat 39 Katherine Ryan 11 3   3 3 3 3 3      
181 Get the potato into the hole 40 Katherine Ryan 11 3   3 3 3 3 3      
186 Find out about the Swedish person 41 Katherine Ryan 11 5   5 1 5 5 5      
191 Pack a suitcase 42 Katherine Ryan 11 3   3 3 3 3 3      
196 The trendiest item of clothing 43 Katherine Ryan 11 4   4 2 4 4 4      
201 Quickly eat an egg 44 Katherine Ryan 11 0   0              
206 Create a nursery rhyme video 45 Katherine Ryan 11 4   4 3 3 3 3.16      
211 A photo of an object that looks like you 46 Katherine Ryan 11 3   3 3 3 3 3      
216 Order a pizza without using certain words 47 Katherine Ryan 11 3 1 4 3 3 3 3      
221 Put potatoes in a basket 48 Katherine Ryan 11 4   4 2 4 4 4      
226 The best dinner party guest 49 Katherine Ryan 11 4   4 2 4 4 4      
231 Impress the Mayor 50 Katherine Ryan 11 5   5 1 5 5 5      
236 Make an unexpected silhouette 51 Katherine Ryan 11 2   2 4 2 2 2      
241 Buy a gift for the Taskmaster 52 Katherine Ryan 11 4   4 2 4 4 4      
246 See no potato, hear no potato, speak no potato 53 Katherine Ryan 11 0   0              
251 Throw rabbits into a hat 54 Katherine Ryan 11 15   15 1 5 5 4.5      
256 The coolest blue item 55 Katherine Ryan 11 2   2 4 2 2 2      
261 Rescue Patatas from the tree 56 Katherine Ryan 11 5   5 1 5 5 5      
266 Conceal a pineapple on your person 57 Katherine Ryan 11 4   4 2 4 4 4      
271 Set a task / Guess who set the tasks 58 Katherine Ryan 11 0   0              
276 Construct something for the Taskmaster 59 Katherine Ryan 11 4   4 1=     4.29 5 3 3.5
281 Build the tallest tower using potato products 60 Katherine Ryan 11 0   0              
286 The best piece of memorabilia 61 Katherine Ryan 11 4   4 2 4 4 4      
291 Move items across a stream 62 Katherine Ryan 11 3   3 3 3 3 3      
296 Create a stop-motion film starring a potato 63 Katherine Ryan 11 2   2 2=     2.5 3 2 2.5
301 Build a bridge for the potato 64 Katherine Ryan 11 1   1 5 1 1 1      
306 Put on gloves, eat a banana, put on a tie, and clap 65 Katherine Ryan 11 3   3 3 3 3 3      

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.211ms