Foundation · 14 min
Two people, one measurement, different answers
After this you can
- classify a measurement as continuous, count, ordinal or categorical data.
- write an operational definition precise enough that two people measure the same thing.
Assumes you have done The average that describes nobody.
The problem
An IT service desk reported mean resolution time of 4.2 hours. The business reported 31 hours for the same tickets, the same month. The meeting to reconcile them ran for ninety minutes and produced an action to "align the data". Neither number was wrong. The desk started its clock when a ticket was assigned to an engineer; the business started theirs when the user first phoned. The 27-hour gap was the queue, which the desk's measure had never included and which was the only thing the business cared about.
The idea
Before you can measure anything you have to answer two questions, and skipping either one produces numbers that look fine and cannot be compared.
1. What kind of data is it?
Four kinds, and the kind decides what arithmetic is legitimate.
Continuous — anything on a scale where halves make sense: minutes, millimetres, kilograms, pounds. Means, standard deviations and capability indices are all valid.
Count — whole things that happened: defects, tickets, complaints. Bounded below by zero, never fractional for an individual case, and usually needing a denominator before it can be compared. "42 complaints" is not a measure of anything; "42 complaints per 10,000 orders" is.
Ordinal — ordered categories with no defined distance between them: a 1-to-5 satisfaction scale, a severity grade, a triage priority. You may rank them. You may not average them. "Mean satisfaction 3.7" assumes the distance from 3 to 4 equals the distance from 4 to 5, and no survey has ever established that. Report the distribution, or the proportion at or above a stated point — "62% rated 4 or 5" is checkable in a way that 3.7 is not.
Categorical — named groups with no order at all: supplier, shift, region, failure mode. Count them and compare proportions; nothing else.
Getting this wrong does not produce an error message. It produces a perfectly valid-looking chart of a meaningless number, which is considerably worse.
2. What exactly is being measured?
An operational definition is the sentence that makes a measurement mean the same thing to two different people. Deming's point in Out of the Crisis is blunt: there is no true value of anything. There is only what a stated procedure produces — so the procedure has to be stated.
A definition is finished when it passes one test: could two people, working separately, follow this and get the same answer?
What that requires in practice:
- The characteristic, specifically. Not "responsiveness" — a concept nobody can stand next to and record — but "elapsed time from the user's first contact to the ticket being closed".
- What starts and stops the clock, if it is a duration. Including the edge case: what happens if the stop event never occurs? This is the single most-omitted line in any measurement definition, and the one that caused the ninety-minute meeting above.
- The instrument — the system, log, timestamp, gauge or form that produces the number. A definition that does not say where the number comes from cannot be repeated, and cannot be checked when it looks wrong.
- The units, always. "42" has been read as minutes by one team and hours by another.
- A rule for any judgement, with a boundary case worked through — because the boundary is exactly where two observers diverge. "Reject if visibly scratched" is not a rule. "Reject if a scratch is visible from 30 cm under standard lighting" is.
The words that most often hide a missing definition are the ones that sound like specifications: promptly, appropriate, reasonable, significant, adequate. None can be checked by a second observer, so nobody can be shown to have missed them.
Worked example
Here is the service desk's definition, exactly as it had been written for two years:
| Field | As written |
|---|---|
| What | Responsiveness of the service desk |
| How | The team lead works it out at the end of each month |
| Starts when | (blank) |
| Stops when | The user is happy the issue is resolved |
| Units | (blank) |
| Data type | continuous |
Five failures, and every one of them is ordinary.
"Responsiveness" is a concept, not a measurement. Two people asked to record it will record different things, because each is measuring their own idea of it. That is not carelessness; there is nothing else they could do.
No start point. This is the 27 hours. The desk read "responsiveness" as beginning when an engineer picked the ticket up, because that is when the desk's responsibility begins. The business read it as beginning when the user phoned, because that is when the user's wait begins. Both readings are reasonable. Only one of them was written down, and it was neither.
"The user is happy" is a judgement with no rule. Happy according to whom, recorded where? In practice the engineer decided, which means the stop event was "when the engineer thought it was done".
"The team lead works it out" names no instrument. There is no way to repeat this, and no way to check it when a number looks wrong.
No units. The desk reported 4.2 and the business reported 31. Nobody in the meeting could say for certain whether either was in hours.
Now rewrite it so it passes the two-person test:
| Field | Rewritten |
|---|---|
| What | Elapsed time from the user's first contact to ticket closure |
| How | Taken from the ticketing system's created_at and closed_at timestamps, exported by the service manager on the first working day of each month |
| Starts when | The ticket is created, by any channel — phone, email or portal |
| Stops when | The ticket status is set to Closed. If it is reopened, the clock restarts and the case counts once, using the final closure |
| Units | hours |
| Data type | continuous |
Every ambiguity that produced the ninety-minute meeting is now decided in writing. Note the reopening rule: that is the boundary case, and the boundary case is where two observers diverge.
One more thing this reveals. With the new definition the desk's number becomes about 31 hours — it will look like performance collapsed overnight. It did not; it was always 31. Anyone changing a definition has to say so loudly, because the chart will show a step change that is entirely an artefact of the measurement.
Dataset: ds-resolution-time-definition — the same data loads in the tool below, so you can reproduce every figure here yourself.
Your turn
The builder opens with the broken definition and checks it as you type.
-
Read what it says before changing anything. Four findings, each naming the word or the gap that triggered it.
-
Now notice which failure it did not catch: the missing start point — the 27 hours, the whole disagreement. The checker cannot flag it, because "responsiveness of the service desk" never says it is a duration. Change what to "elapsed time from first contact to closure": the abstract-concept finding clears, and a new one appears in its place — no start and stop. Naming the measurement properly is what let the checker see the gap.
That is worth sitting with. A tool cannot tell you what you failed to say. It can only check what you did say, which is why the first field is the one that matters most.
-
Fix the rest one at a time and watch each finding clear. Start with starts when — it is the one that caused the disagreement, and it is the one nobody thinks to write.
-
Now change the data type to
ordinalwhile the units still say hours. The tool flags the contradiction: the type is not a label, it decides which arithmetic is legitimate. -
Try writing a definition for something in your own work. Then do the real test, which the tool cannot do for you: hand it to a colleague, have them measure five cases without asking you anything, and compare. If your numbers differ, the definition is not finished — whatever the tool says.
Operational Definition
practiceOne test throughout: could two people, working separately, follow this and get the same answer? Everything below is that question asked a different way.
A characteristic you could stand next to and record — not a concept.
Name the instrument: the system, log, timestamp, gauge or form.
Only for durations. The single most-omitted line in any measurement.
Include the edge case: what happens if it never occurs?
"42" has been read as minutes by one team and hours by another.
Decides which arithmetic is legitimate.
Anything measurable on a scale where halves make sense — minutes, millimetres, kilograms, pounds. Means, standard deviations and capability indices are all valid.
abstract concept"Responsiveness" names a concept, not a measurement. Two people asked to record it will record different things, because they are each measuring their own idea of it. Replace it with the specific characteristic you would actually write down — a time, a count, a dimension.
judgement without rule"happy" asks the observer to judge somebody else's state of mind. If a judgement is genuinely required, write the rule the observer should apply — with a boundary case worked through, because the boundary is where two observers diverge.
no unitsNo units. A number with no unit cannot be compared, aggregated or charted, and "42" has been read as minutes by one team and hours by another more than once.
no instrumentThe method does not say what does the measuring. Name the system, log, timestamp, gauge or form — a definition that does not say where the number comes from cannot be repeated, and cannot be checked when it looks wrong.
How this is calculated
No statistics and no score. It is a structural check, and it is pattern matching over English — English will defeat it. If you think a flag is wrong for your definition, you are probably right; the flags exist to make you look, not to grade you.
- Words naming a concept rather than something recordable.
- Qualifiers that sound like a specification and contain no number.
- Words asking the observer to judge, with no rule for judging.
- A duration with no stated start or stop.
- A method that never names the instrument.
- A declared data type that contradicts the units.
- An average taken over an ordinal scale.
Source: Deming, W.E. (1986), Out of the Crisis, Ch. 9; Wheeler, D.J. & Chambers, D.S. (1992), Understanding Statistical Process Control, Ch. 2.
Saved runs can be attached to a project deliverable as evidence. Both what you entered and what the tool computed are stored, so the result can be checked again later.
Check yourself
No hints. Wrong answers are explained, not softened.
A survey asks customers to rate delivery 1 to 5. The monthly report shows 'mean rating 3.7, up from 3.6'. What is wrong?
A definition reads: 'Reject any panel that is visibly scratched.' Two inspectors disagree about a third of panels. What is the fix?
You tighten a measurement definition and the reported figure jumps from 4.2 to 31. What must you do?
Worth remembering
Why can an ordinal scale not be averaged?
Ordinal categories have order but no defined distance between them. A mean assumes 3→4 is the same size as 4→5, which no survey establishes. Report the distribution or a proportion above a stated point.
What is the test for a finished operational definition?
Could two people, working separately, follow it and get the same answer? Disagreement between observers is data about the definition, not about the observers.
What is the most commonly omitted line in a measurement definition?
What starts the clock. Two teams measuring 'time to resolve' from different start points will report different numbers and each will be certain the other's data is wrong.
Can you do this now?
Rate yourself honestly. We compare your rating with how you actually answered — the gap is more useful than either number alone.
I can classify a measurement as continuous, count, ordinal or categorical data.
I can write an operational definition precise enough that two people measure the same thing.
Your rating is recorded alongside your drill results. Neither alone marks the competency as met.