Unit 12.00: A structure that serves two readers at once
Seven sections. The two that get dropped are the two that make it an analysis rather than an argument.
A structure that serves two readers at once
Question states the decision in one sentence. Data gives the source, the window, the unit and the sample size before and after exclusions. Method names the test and what was pre-specified. Result gives the estimate with its interval in real units. Uncertainty says what the study could and could not have detected. Limitations names the confounders, the missingness and what was not tested. Next step says what the evidence supports.
The structure serves two readers who never read the same parts. Someone deciding reads Question and Result; someone checking reads Method and Limitations. Both paths have to work alone.
Uncertainty and Limitations vanish under deadline pressure, and they are what distinguishes a report from advocacy.
This block lays out the seven sections and what each must contain.
sections = {
"Question": "One sentence. What decision does this inform?",
"Data": "Source, window, unit of analysis, n before and after exclusions",
"Method": "The test, why it was chosen, what was pre-specified",
"Result": "Estimate with its confidence interval, in real units",
"Uncertainty": "Interval width, sample size, what the study could have detected",
"Limitations": "Confounders, missingness, generalisability, what was NOT tested",
"Next step": "The decision this supports, or the evidence still needed",
}
for name, content in sections.items():
print(f"{name:12s} {content}")
print("\nA reader in a hurry reads Question and Result. A reviewer reads")
print("Method and Limitations. Both paths must work without the other.\n")
print("The two sections most often missing are the last two -- and they are")
print("what separates an analysis from an argument.")
print(f"Sections: {len(sections)} None is optional.")
7 sections, none optional. The output makes the reader split explicit — Question and Result for the hurried, Method and Limitations for the reviewer — and names the two most often missing as the last two.
The mistake this prevents
The mistake is folding limitations into a closing sentence of the result. They belong under their own heading, where a reviewer looks for them and cannot skim past.
Takeaway
Use all seven headings. Write Limitations before you write the conclusion, and make sure Result and Method each stand alone.
