Week 7 — Your Methods, Your Defense
2001-07-01
We’ve spent weeks talking about philosophy and diagnostics and looking at papers
This week: I want people to start working a bit on their methods
“The best time to defend your methods is ______________”
| Week | Idea | The One-Liner |
|---|---|---|
| 2 | Box (1976) | “All models are wrong — some are useful” |
| 2 | Bayesian vs. Frequentist | You’re working in a framework whether you know it or not |
| 3, 4 | Method–Question–Data Triangle | Misalignment = unreliable results |
| 5, 6 | Papers | Start planning your paper |
Week 7: Start justifying your method.
“You’re in your dissertation defense. Your committee asks: ‘Why did you use this method?’ What do you say?” Are you ready to answer that question?
Tip
If your answer is “because my advisor does it” or “because I Googled it” —> that’s what this semester is about.
I am really focusing on some concepts that I think are really important and that I want you to understand deeply
They are the foundation for your understanding of concepts from a philosophical perspective
Raise your hand if you can answer:
You are a peer reviewer for Ecological Applications.
Title: Nitrogen addition increases aboveground biomass in semi-arid grasslands
Methods (excerpt): We established 12 plots across 4 ranches in eastern Colorado. Each ranch received one of three nitrogen treatments: control, low (25 kg N/ha), and high (50 kg N/ha). Biomass was harvested at three time points: May, July, and September.
We ran a one-way ANOVA on the September harvest only, as this represented “peak biomass.” We report p = 0.03 and conclude high nitrogen significantly increased biomass.
We selected ANOVA because it is the standard method in grassland ecology and because our dataset was small. We acknowledge data were not fully independent but considered this a minor concern.
Let’s run Dr. Reyes’s design through our tools:
The Triangle:
Research question: Does nitrogen addition increase biomass?
Data: 12 plots nested within 4 ranches, repeated measures over time
Method: One-way ANOVA on September data only
Box Test: Is this model wrong in a way that matters?
Plots nested within ranches. Repeated measures (3 time points). One-way ANOVA ignores both.
Yes. Wrong in a way that matters.
Problem 1 — Habit, not design
“Standard method” is not a philosophical defense.
The design calls for lmer() with ranch as a random effect.
Problem 2 — The Triangle is broken
Repeated measures + nested structure + continuous response
→ requires a mixed model, not a one-way ANOVA.
Problem 3 — Dropping data without justification
Why only September? What does the May–July trajectory tell us?
Selective analysis ≠ rigorous inference.
Important
The fix? lmer(biomass ~ treatment * time + (1|ranch/plot), data = reyes_data)
| Type | What you need | What Dr. Reyes had |
|---|---|---|
| Descriptive | Representative sample | ✅ (sort of) |
| Predictive | Cross-validation, held-out test | ❌ |
| Causal | Randomization + correct error structure | ⚠️ Treatments assigned to ranches — confounded |
Dr. Reyes wrote “significantly increased biomass” -> that’s a causal claim.
But the design doesn’t fully support it.
Tip
The honest version: “Biomass was higher in high-N plots (p = 0.03) –> Descriptive”
Can you answer all four for your own analysis?
Important
The best analysis is the simplest one that honestly addresses your question given your data structure.
You just played reviewer.
Thursday’s workshop: You become the author.
You will fill out a Method Defense Card:
| Prompt | Your Answer |
|---|---|
| My research question | |
| My response variable type | |
| My planned analysis | |
| Why it fits (Triangle + framework) | |
| One thing Dr. Reyes did I might be tempted to do | |
| How I’m guarding against it |
Coming Thursday — but start thinking now.
Every model makes assumptions. Most people know this.
Fewer people have actually checked which ones they’ve met.
| Assumption | Status |
|---|---|
| Independence of residuals | 🟢 Checked |
| Normality of random effects | 🟡 |
| No spatial autocorrelation | 🔴 |
Tip
The goal is not all green.
Red assumptions are honest limitations —> they belong in your Discussion.
The failure is not knowing which color you’re at.