Skip to content
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

Updates to CS config files #91

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 42 additions & 23 deletions cs-config/cs_config/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ def run_model(meta_param_dict, adjustment):
utils.mkdirs(_dir)

# Dask parmeters
client = Client()
num_workers = 5
client = Client(n_workers=num_workers, threads_per_worker=1)
# TODO: Swap to these parameters when able to specify tax function
# and model workers separately
# num_workers_txf = 5
Expand Down Expand Up @@ -233,19 +233,10 @@ def run_model(meta_param_dict, adjustment):

# Solve baseline model
start_year = meta_param_dict["year"][0]["value"]
if start_year == 2020:
OGPATH = inspect.getfile(SS)
OGDIR = os.path.dirname(OGPATH)
tax_func_path = None # os.path.join(OGDIR, 'data', 'tax_functions',
# cached_pickle)
run_micro_baseline = True
else:
tax_func_path = None
run_micro_baseline = True
base_spec = {
**{
"start_year": start_year,
"tax_func_type": "DEP",
"tax_func_type": "GS",
"age_specific": False,
},
**filtered_ogusa_params,
Expand Down Expand Up @@ -281,6 +272,9 @@ def run_model(meta_param_dict, adjustment):
data=data,
client=client,
)
client.close()
del client
client = Client(n_workers=num_workers, threads_per_worker=1)
# update tax function parameters in Specifications Object
d_base = c_base.get_dict()
# additional parameters to change
Expand All @@ -295,6 +289,9 @@ def run_model(meta_param_dict, adjustment):
base_ss = SS.run_SS(base_params, client=client)
utils.mkdirs(os.path.join(base_dir, "SS"))
base_ss_dir = os.path.join(base_dir, "SS", "SS_vars.pkl")
client.close()
del client
client = Client(n_workers=num_workers, threads_per_worker=1)
with open(base_ss_dir, "wb") as f:
pickle.dump(base_ss, f)
if time_path:
Expand Down Expand Up @@ -389,8 +386,10 @@ def comp_output(
Function to create output for the COMP platform
"""
if time_path:
table_title = "Percentage Changes in Economic Aggregates Between"
table_title += " Baseline and Reform Policy"
macro_table_title = "Percentage Changes in Economic Aggregates Between"
macro_table_title += " Baseline and Reform Policy"
dynamic_rev_table_title = "Dynamic Revenue Estimate Decomposition"
download_table_title = "Economic variables over the time path"
plot1_title = "Pct Changes in Economic Aggregates Between"
plot1_title += " Baseline and Reform Policy"
plot2_title = "Pct Changes in Interest Rates and Wages"
Expand All @@ -404,7 +403,7 @@ def comp_output(
reform_tpi,
table_format="csv",
)
html_table = ot.macro_table(
macro_table = ot.macro_table(
base_tpi,
base_params,
reform_tpi,
Expand All @@ -417,6 +416,21 @@ def comp_output(
start_year=base_params.start_year,
table_format="html",
)
dynamic_rev_table = ot.dynamic_revenue_decomposition(
base_params,
base_tpi,
base_ss,
reform_params,
reform_tpi,
reform_ss,
num_years=10,
include_SS=True,
include_overall=True,
include_business_tax=True,
full_break_out=False,
start_year=base_params.start_year,
table_format="html",
)
fig1 = op.plot_aggregates(
base_tpi,
base_params,
Expand Down Expand Up @@ -494,21 +508,26 @@ def comp_output(
},
{
"media_type": "table",
"title": table_title,
"data": html_table,
"title": macro_table_title,
"data": macro_table,
},
{
"media_type": "table",
"title": dynamic_rev_table_title,
"data": dynamic_rev_table,
},
],
"downloadable": [
{
"media_type": "CSV",
"title": table_title,
"title": download_table_title,
"data": out_table.to_csv(),
}
],
}
else:
table_title = "Percentage Changes in Economic Aggregates Between"
table_title += " Baseline and Reform Policy"
macro_table_title = "Percentage Changes in Economic Aggregates Between"
macro_table_title += " Baseline and Reform Policy"
plot_title = "Percentage Changes in Consumption by Lifetime Income"
plot_title += " Percentile Group"
out_table = ot.macro_table_SS(
Expand All @@ -526,7 +545,7 @@ def comp_output(
],
table_format="csv",
)
html_table = ot.macro_table_SS(
macro_table_SS = ot.macro_table_SS(
base_ss,
reform_ss,
var_list=[
Expand Down Expand Up @@ -557,14 +576,14 @@ def comp_output(
},
{
"media_type": "table",
"title": table_title,
"data": html_table,
"title": macro_table_title,
"data": macro_table_SS,
},
],
"downloadable": [
{
"media_type": "CSV",
"title": table_title,
"title": macro_table_title,
"data": out_table.to_csv(),
}
],
Expand Down
Loading