You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the output_tables.dynamic_revenue_decomposition function, the total percentage change in tax revenue is broken down into the percentage changes from:
Changes in tax rates
Behavioral responses (i.e., changes in labor supply and savings)
Macro economic effects (i.e., changes in interest rates and wages)
These changes are computed by create 4 series of revenue:
A. Baseline simulation tax revenue
B. Tax revenue with new tax rates, but the same behavior and wages and interest rates as in the baseline simulation
C. Tax revenue with new tax rates, new behavior, but the same wages and interest rates as in the baseline simulation
D. The reform simulation tax revenue
In its current form, the function computes the percentage changes in the following way:
Pct change due to tax rates = (B-A)/A
Pct change due to behavior = (C-B)/B
Pct change due to macro = (D-C)/D
Overall pct change = (D-A)/D
In this way, the percentage changes can't be summed together to get the overall percentage change. I think such adding up is a nice property.
Therefore, I propose we define the percentage changes as percentages relative to the baseline revenue:
Pct change due to tax rates = (B-A)/A
Pct change due to behavior = (C-B)/A
Pct change due to macro = (D-C)/A
Overall pct change = (D-A)/A
The text was updated successfully, but these errors were encountered:
In the
output_tables.dynamic_revenue_decomposition
function, the total percentage change in tax revenue is broken down into the percentage changes from:These changes are computed by create 4 series of revenue:
A. Baseline simulation tax revenue
B. Tax revenue with new tax rates, but the same behavior and wages and interest rates as in the baseline simulation
C. Tax revenue with new tax rates, new behavior, but the same wages and interest rates as in the baseline simulation
D. The reform simulation tax revenue
In its current form, the function computes the percentage changes in the following way:
In this way, the percentage changes can't be summed together to get the overall percentage change. I think such adding up is a nice property.
Therefore, I propose we define the percentage changes as percentages relative to the baseline revenue:
The text was updated successfully, but these errors were encountered: