Week 5: Your Question, Your Plan
Group formation and research planning
Today’s goals
- Finalise your group and choose your project topic
- Set up your group’s GitHub repo with branches and pull requests
- Write a structured one-page research plan
- Present your plan to the class (60 seconds)
1. Choose your topic
Browse the curated topic list. Each topic has a clear research question, accessible data sources, and a genuine policy dimension.
Before committing, check with your instructor that no other group has chosen the same topic. Ask yourself:
- Can we access the data? (Download it now and check.)
- Does the question interest us enough for 6 weeks?
- Does it map to a statistical test we’ll learn (t-test, ANOVA, regression)?
2. Set up your group repo
Your instructor will demonstrate the Git collaboration workflow. Then your group does it for real:
Step-by-step
- Clone your group’s repo (created via GitHub Classroom or by your instructor)
- Each member: create a branch with your name (e.g.
alex-explore) - On your branch: add your name to the
team.mdfile, save, commit - Push your branch to GitHub
- On GitHub.com: open a Pull Request from your branch to
main - A teammate: review and merge your PR
- Everyone: pull the updated
main
This is the workflow you’ll use for the rest of the module. Branches keep your work separate until you’re ready to combine; PRs let teammates review before merging.
See the Git troubleshooting guide for the most common problems and fixes.
3. Write your research plan
Use the template below (also available as a markdown file in your repo). Complete all seven sections as a group.
Your instructor and demonstrators will circulate to challenge your design: “What’s your control?” “How will you handle this confounder?” “Is your sample representative?”
Research plan template
# Research Plan: [Your topic title]
## 1. Research question
What are you investigating? (One sentence.)
## 2. Hypothesis
What do you expect to find, and why?
## 3. Data sources
Where will your data come from? What variables? What time period?
## 4. Comparison / control
What are you comparing to? How will you isolate the effect of
interest?
## 5. Potential confounders
What alternative explanations should you worry about?
## 6. Analysis plan
What statistical tools do you anticipate using? (Descriptive stats,
t-tests, ANOVA, regression — link to what you've learned and what's
coming in Weeks 6–8.)
## 7. Division of labour
Who's doing what this week and next?→ Download the research plan template
4. Present your plan
Each group gives a 60-second pitch:
- Our question is…
- We hypothesise that…
- Our data comes from…
- Our comparison is…
The class and instructor give brief feedback. Focus on:
- Is the question answerable with the available data?
- Is there a clear comparison?
- What’s the biggest potential confounder?
Commit and wrap-up
Commit your research plan via a pull request:
- One group member writes the plan in
research-plan.md - Commit and push to a branch
- Open a PR — other members review
- Merge to
main
Preview: Next week you’ll learn the formal tools for testing hypotheses — t-tests, p-values, and why they can mislead you. You’ll start applying them to your project data.