How do we measure the impact of a policy? In a laboratory, you have a control group. In the real world, we only have one California. We cannot observe the "counterfactual"—a parallel universe where California never passed its landmark Cap-and-Trade bill (AB 32) in 2013.
However, using econometrics and Python, we can build that parallel universe.
Using the Synthetic Control Method (SCM), I analyzed real-world energy data to estimate the true impact of carbon pricing on California's emissions. Here is what the data says.
The Methodology
The Synthetic Control Method estimates the effect of an intervention (the policy) by comparing the treated unit (California) to a weighted combination of control units (other US states) that did not implement the policy.
To ensure a robust "apples-to-apples" comparison, I pulled data directly from the EIA Open Data API (v2), controlling for:
- Covariates: Real GDP per Capita (economic health) and Population density.
- Donor Pool: I specifically restricted the "Donor Pool" to states with "cleaner" energy grids and service-based economies (e.g., New York, Massachusetts, Washington) rather than coal-heavy industrial states (like Texas or Ohio), which would bias the pre-trend fit.
- Smoothing: I applied a 3-year rolling average to the time series. This is critical for energy analysis, as it filters out high-frequency "weather noise" (heatwaves or wet winters) to reveal structural economic trends.
The Result: California vs. "Synthetic California"
The Python model constructed a "Synthetic California" composed of a weighted average of peer states. By comparing the two, we can visualize the policy's impact.
Analysis: Three Distinct Eras
The data tells a nuanced story in three parts:
1. The Validation (2009–2013)
Before the policy goes into effect, the "Actual" (Blue) and "Synthetic" (Red) lines move in parallel. This confirms the "Parallel Trends Assumption"—a prerequisite for SCM. It proves that our synthetic model effectively mimics California’s economy in the absence of the policy.
2. The "Drought Penalty" (2015–2018)
Unexpectedly, California appears to perform worse than the synthetic control in the mid-2010s. This is a classic example of omitted variable bias due to climate shock. Between 2011 and 2017, California suffered a historic drought. Hydroelectric generation plummeted, forcing the grid to rely heavily on natural gas. While the policy was working, its signal was temporarily drowned out by the climate reality.
3. The Divergence (2019–2021)
As the drought subsided and the emissions cap tightened, the lines diverged sharply. While the donor states continued a gradual decline, California’s emissions dropped significantly faster. By 2021, the gap suggests that Cap-and-Trade is actively driving emissions down beyond the national baseline.
Comparing to the Literature
This analysis aligns with authoritative studies in environmental economics, which suggest that carbon pricing works, though its effects are often gradual and compounding.
- Hernandez-Cortes & Meng (2023): In their paper "Do Environmental Markets Cause Local Pollution Inequities?", the authors used similar rigorous causal inference methods to find that California's Cap-and-Trade program reduced GHG emissions and local air pollution, particularly narrowing the gap between disadvantaged and wealthy communities.
- Bayer & Aklin (2020): Applying SCM to the European Union Emissions Trading System (EU ETS), they found that carbon pricing reduced emissions by approximately 3.8% initially, with effects accumulating over time—mirroring the "delayed divergence" we see in my California plot.
- Severin Borenstein (UC Berkeley): Borenstein has noted that while the "Cap" is effective, complementary policies (like renewable portfolio standards) often do the heavy lifting, making it difficult to isolate the price signal from the regulatory signal.
Conclusion
Data science allows us to see the invisible. While a simple line chart of California's emissions shows a decline, it doesn't tell us why. By building a Synthetic Control, we can confidently argue that despite climate headwinds, California's carbon pricing mechanism is delivering measurable abatement results that exceed the national average.

Comments
Post a Comment
Constructive feedback is always welcome. Thank you