Replication of Serrato & Zidar (2018)
The first time I read Serrato & Zidar (2018) is in 2021 (my first year in my Master program), and it became the first empirical Econometrics paper impressing me. Here I just share my Stata coding files that partially replicate this paper.
To run my codes, the following packages should be installed in advance.
ssc install listtex, replace
ssc install estout, replace
ssc install regsave, replace
ssc install cdfplot, replace
net install grc1leg, replace from(http://www.stata.com/users/vwiggins/)
- Describe the US state corporate tax structure and document how it has changed over time.
- Investigate the consequences of these changes for state tax collections and economic activity.
- Tax base rules and credits explain more of the variation in state corporate tax revenues than tax rates do.
- As the data (50 states in 1980-2010) show, while average state corporate tax rates have remained relatively stable, tax base and credit changes are much more frequent, and state corporate tax revenues as a share of economic activity have declined substantially.
- The vast majority of tax base changes aren't associated with tax rate changes.
- Although states typically don't offset tax rate changes with base and credit changes, the effects of tax rate changes on tax revenue and economic activity depend on the breadth of the base.
- As states have narrowed their tax bases, the relationship between tax rates and tax revenues has diminishes.
To do an analysis of the path of state outcomes preceding and following a change in the state corporate tax structure, the authors used the following event study specification:
-
$R_{st}$ denotes the state-year outcome variables, including state corporate tax revenue as a share of state GDP, log state corporate tax revenue, and log state GDP; -
$D_{st}^k$ is an indicator for state$s$ having changed the state tax rate$k$ periods in the past; -
$\alpha_s$ is state fixed effect, and$\gamma_t$ is time fixed effect.
The authors addressed imbalance issues by binning periods greater than 5 or less than -4. To address serial correlation in
Event study results:
- Corporate tax decreases that exceed 0.5 pp cuts in the rate tend to reduce state corporate tax revenue as a share of state GDP by roughly 6 pp cumulatively over a 5-year period.
- Controlling for tax base rules doesn't strongly affect the estimated effects.
To increase statistical precision, the authors run a new regression:
Considering that changes in state corporate tax rates may have different effects on tax revenue and economic activities depending on the breadth of the tax base, then the authors expanded the model above by including interaction terms between the tax rate and the tax base controls:
Including those interaction terms led to a much higher estimated effect of tax rate on the revenue-to-GDP ratio, highly suggesting the former OLS regression returned a biased estimate.
Introducing a quadratic term to the basic framework gives us
Footnotes
-
Base index is an authors-defined index of the breadth of the tax base. See Section 4.2.1 and Table 5.do for computation details. ↩