|
9 | 9 | "**Graded Intervention Time Series** extends classical interrupted time series analysis to handle **graded interventions** - policies or treatments with varying intensity over time, rather than simple on/off changes. Traditional ITS methods model binary interventions (e.g., \"policy enacted\" vs \"no policy\"). This method (technically called Transfer Function Interrupted Time Series or TF-ITS in the literature {cite:p}`box1975intervention`, with extensions to multiple time series by {cite:p}`abraham1980intervention`) handles more realistic scenarios where:\n", |
10 | 10 | "\n", |
11 | 11 | "1. **Intervention intensity varies continuously** (e.g., advertising spend \\$0 - 100k, communication frequency 0-10 messages/week)\n", |
12 | | - "2. **Effects saturate** - diminishing returns as exposure increases (10th message less impactful than the 1st)\n", |
13 | | - "3. **Effects persist over time** - past interventions continue to influence outcomes (behavioral habits change gradually)\n", |
| 12 | + "2. **Effects persist over time** - past interventions continue to influence outcomes (behavioral habits change gradually, messages have carryover effects)\n", |
| 13 | + "3. **Effects may saturate** (optional) - diminishing returns as exposure increases (10th message less impactful than the 1st)\n", |
14 | 14 | "\n", |
15 | 15 | "For a good introductory overview of transfer function models and intervention analysis, see {cite:p}`helfenstein1991use`.\n", |
16 | 16 | "\n", |
17 | 17 | "### Key Components\n", |
18 | 18 | "\n", |
19 | | - "- **Saturation transforms**: Model diminishing returns using Hill, logistic, or Michaelis-Menten functions\n", |
20 | | - "- **Adstock (carryover) transforms**: Model persistence using geometric decay with configurable half-life\n", |
21 | | - "- **Baseline controls**: Include confounders and natural trends\n", |
22 | | - "- **{term}`Counterfactual` analysis**: Estimate effects by zeroing or scaling interventions\n", |
| 19 | + "- **Transfer functions**: Transform the raw intervention variable to capture its dynamic relationship with the outcome. In the media mix modeling literature, two common transfer functions are:\n", |
| 20 | + " - **Adstock (carryover) transforms**: Model how effects persist over time using geometric decay with configurable half-life\n", |
| 21 | + " - **Saturation transforms** (optional): Model diminishing returns using Hill, logistic, or Michaelis-Menten functions when appropriate\n", |
| 22 | + "- **Baseline controls**: Include confounders and natural trends in the regression\n", |
| 23 | + "- **{term}`Counterfactual` analysis**: Estimate causal effects by zeroing or scaling interventions\n", |
23 | 24 | "- **HAC standard errors**: Robust inference accounting for autocorrelation and heteroskedasticity\n", |
24 | 25 | "\n", |
| 26 | + "Transfer functions can be as simple as a distributed lag (adstock only) or can combine multiple transformations (e.g., saturation followed by adstock). The key is to match the functional form to the expected dynamics of the intervention.\n", |
| 27 | + "\n", |
25 | 28 | "### When to Use Graded Intervention Time Series\n", |
26 | 29 | "\n", |
27 | 30 | "Use this method when you have:\n", |
28 | 31 | "- ✅ Time series data from a **single unit** (region, market, organization)\n", |
29 | 32 | "- ✅ **Graded intervention** with varying intensity over time\n", |
30 | | - "- ✅ Reason to expect **saturation** (diminishing returns) or **carryover effects** (persistence)\n", |
| 33 | + "- ✅ Reason to expect **carryover effects** (persistence over time), and optionally **saturation** (diminishing returns)\n", |
31 | 34 | "- ✅ Baseline controls available for confounders\n", |
32 | 35 | "\n", |
33 | 36 | ":::{note}\n", |
|
0 commit comments