8000 Computing payroll tax revenue · Issue #1023 · PSLmodels/OG-Core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Computing payroll tax revenue #1023

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
jdebacker opened this issue Mar 22, 2025 · 0 comments
Open

Computing payroll tax revenue #1023

jdebacker opened this issue Mar 22, 2025 · 0 comments

Comments

@jdebacker
Copy link
Member

Payroll tax revenue is computed in aggregates.revenue as:

payroll_tax_revenue = (
            p.frac_tax_payroll[: p.T] * iit_payroll_tax_revenue
        )

This implicitly assumes one is using personal income tax functions that include both payroll and income taxes and that the users is separating these revenues in proportion to a series they input in the parameter frac_tax_payroll (which they may have found from a microsimulation model of payroll and income taxes).

The issue is that this calculation will be incorrect when a user includes payroll taxes via tau_payroll (and excludes them from the tax functions represented in etr_params, mtrx_params, and mtry_y params.

I think the solution is to create a payroll tax revenue function for this calculation. This function will then have a flag to determine how the user treated payroll taxes in the model. e.g., something like:

def payroll_tax_revenue(args...):
    if np.any(tau_payroll != 0):
        payroll_tax_revenue = p.tau_payroll[:T] * w[:T] * L[:T]
    else:
         payroll_tax_revenue = (
                     p.frac_tax_payroll[: p.T] * iit_payroll_tax_revenue
                )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant
0