taxcalc 4.2.2__py3-none-any.whl → 4.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- taxcalc/__init__.py +3 -1
- taxcalc/calcfunctions.py +4 -12
- taxcalc/cli/tc.py +26 -10
- taxcalc/data.py +13 -5
- taxcalc/policy.py +1 -1
- taxcalc/policy_current_law.json +2714 -228
- taxcalc/records.py +32 -18
- taxcalc/reforms/ext.json +20 -20
- taxcalc/taxcalcio.py +61 -28
- taxcalc/tests/cpscsv_agg_expect.csv +18 -18
- taxcalc/tests/puf_var_wght_means_by_year.csv +5 -5
- taxcalc/tests/pufcsv_agg_expect.csv +19 -19
- taxcalc/tests/test_benefits.py +3 -3
- taxcalc/tests/test_calcfunctions.py +4 -5
- taxcalc/tests/test_calculator.py +1 -36
- taxcalc/tests/test_policy.py +460 -478
- taxcalc/tests/test_reforms.py +16 -15
- {taxcalc-4.2.2.dist-info → taxcalc-4.3.1.dist-info}/METADATA +1 -1
- {taxcalc-4.2.2.dist-info → taxcalc-4.3.1.dist-info}/RECORD +23 -28
- {taxcalc-4.2.2.dist-info → taxcalc-4.3.1.dist-info}/WHEEL +1 -1
- taxcalc/reforms/rounding2022.json +0 -153
- taxcalc/reforms/rounding2022.out.csv +0 -10
- taxcalc/tests/test_tmdcsv.py +0 -38
- taxcalc/tmd_growfactors.csv +0 -55
- taxcalc/tmd_weights.csv.gz +0 -0
- {taxcalc-4.2.2.dist-info → taxcalc-4.3.1.dist-info}/LICENSE +0 -0
- {taxcalc-4.2.2.dist-info → taxcalc-4.3.1.dist-info}/entry_points.txt +0 -0
- {taxcalc-4.2.2.dist-info → taxcalc-4.3.1.dist-info}/top_level.txt +0 -0
taxcalc/tests/test_reforms.py
CHANGED
@@ -97,41 +97,42 @@ def test_round_trip_reforms(fyear, tests_path):
|
|
97
97
|
rtr_pol = Policy()
|
98
98
|
# Revert to 2017 law
|
99
99
|
reform_file = os.path.join(tests_path, '..', 'reforms', '2017_law.json')
|
100
|
-
with open(reform_file, 'r') as rfile:
|
100
|
+
with open(reform_file, 'r', encoding='utf-8') as rfile:
|
101
101
|
rtext = rfile.read()
|
102
102
|
rtr_pol.implement_reform(Policy.read_json_reform(rtext))
|
103
103
|
assert not rtr_pol.parameter_warnings
|
104
104
|
assert not rtr_pol.errors
|
105
105
|
# Layer on TCJA
|
106
106
|
reform_file = os.path.join(tests_path, '..', 'reforms', 'TCJA.json')
|
107
|
-
with open(reform_file, 'r') as rfile:
|
107
|
+
with open(reform_file, 'r', encoding='utf-8') as rfile:
|
108
108
|
rtext = rfile.read()
|
109
109
|
rtr_pol.implement_reform(Policy.read_json_reform(rtext))
|
110
110
|
assert not rtr_pol.parameter_warnings
|
111
111
|
assert not rtr_pol.errors
|
112
112
|
# Layer on the CARES Act
|
113
113
|
reform_file = os.path.join(tests_path, '..', 'reforms', 'CARES.json')
|
114
|
-
with open(reform_file, 'r') as rfile:
|
114
|
+
with open(reform_file, 'r', encoding='utf-8') as rfile:
|
115
115
|
rtext = rfile.read()
|
116
116
|
rtr_pol.implement_reform(Policy.read_json_reform(rtext))
|
117
117
|
# Layer on the Consolidated Appropriations Act of 2021
|
118
|
-
reform_file = os.path.join(
|
119
|
-
|
120
|
-
|
118
|
+
reform_file = os.path.join(
|
119
|
+
tests_path, '..', 'reforms', 'ConsolidatedAppropriationsAct2021.json'
|
120
|
+
)
|
121
|
+
with open(reform_file, 'r', encoding='utf-8') as rfile:
|
121
122
|
rtext = rfile.read()
|
122
123
|
rtr_pol.implement_reform(Policy.read_json_reform(rtext))
|
123
124
|
assert not rtr_pol.parameter_warnings
|
124
125
|
assert not rtr_pol.errors
|
125
126
|
# Layer on ARPA
|
126
127
|
reform_file = os.path.join(tests_path, '..', 'reforms', 'ARPA.json')
|
127
|
-
with open(reform_file, 'r') as rfile:
|
128
|
+
with open(reform_file, 'r', encoding='utf-8') as rfile:
|
128
129
|
rtext = rfile.read()
|
129
130
|
rtr_pol.implement_reform(Policy.read_json_reform(rtext))
|
130
131
|
assert not rtr_pol.parameter_warnings
|
131
132
|
assert not rtr_pol.errors
|
132
|
-
# Layer on
|
133
|
-
reform_file = os.path.join(tests_path, '..', 'reforms', '
|
134
|
-
with open(reform_file, 'r') as rfile:
|
133
|
+
# Layer on rounding from IRS through Policy.LAST_KNOWN_YEAR
|
134
|
+
reform_file = os.path.join(tests_path, '..', 'reforms', 'rounding.json')
|
135
|
+
with open(reform_file, 'r', encoding='utf-8') as rfile:
|
135
136
|
rtext = rfile.read()
|
136
137
|
rtr_pol.implement_reform(Policy.read_json_reform(rtext))
|
137
138
|
assert not rtr_pol.parameter_warnings
|
@@ -142,9 +143,9 @@ def test_round_trip_reforms(fyear, tests_path):
|
|
142
143
|
assert clp_mdata.keys() == rtr_mdata.keys()
|
143
144
|
fail_dump = False
|
144
145
|
if fail_dump:
|
145
|
-
rtr_fails = open('fails_rtr', 'w')
|
146
|
-
clp_fails = open('fails_clp', 'w')
|
147
|
-
fail_params =
|
146
|
+
rtr_fails = open('fails_rtr', 'w', encoding='utf-8')
|
147
|
+
clp_fails = open('fails_clp', 'w', encoding='utf-8')
|
148
|
+
fail_params = []
|
148
149
|
msg = '\nRound-trip-reform and current-law-policy param values differ for:'
|
149
150
|
for pname in clp_mdata.keys():
|
150
151
|
rtr_val = rtr_mdata[pname]
|
@@ -364,7 +365,7 @@ def test_ext_reform(tests_path):
|
|
364
365
|
end.set_year(2026)
|
365
366
|
ext = Policy()
|
366
367
|
reform_file = os.path.join(tests_path, '..', 'reforms', 'ext.json')
|
367
|
-
with open(reform_file, 'r') as rfile:
|
368
|
+
with open(reform_file, 'r', encoding='utf-8') as rfile:
|
368
369
|
rtext = rfile.read()
|
369
370
|
ext.implement_reform(Policy.read_json_reform(rtext))
|
370
371
|
assert not ext.parameter_warnings
|
@@ -382,4 +383,4 @@ def test_ext_reform(tests_path):
|
|
382
383
|
iitax_ext = calc_ext.array('iitax')
|
383
384
|
rdiff = iitax_ext - iitax_end
|
384
385
|
weighted_sum_rdiff = (rdiff * calc_end.array('s006')).sum() * 1.0e-9
|
385
|
-
assert np.allclose([weighted_sum_rdiff], [-
|
386
|
+
assert np.allclose([weighted_sum_rdiff], [-230.805], rtol=0.0, atol=0.01)
|
@@ -1,34 +1,32 @@
|
|
1
|
-
taxcalc/__init__.py,sha256=
|
2
|
-
taxcalc/calcfunctions.py,sha256=
|
1
|
+
taxcalc/__init__.py,sha256=OIcjp1KVj4GPxBYcT7C9VtzhA1WzzJcjtbLxoGJhyuU,536
|
2
|
+
taxcalc/calcfunctions.py,sha256=XrEHKMnjOQQHSryk8FXbRDo5Xd8grDgrTJ1q_7DDehQ,146696
|
3
3
|
taxcalc/calculator.py,sha256=Ybk497LXzg5RSJEiFCEQPsM0odA7MT_mutqcXWe5d8o,63694
|
4
4
|
taxcalc/conftest.py,sha256=nO4J7qu1sTHgjqrzhpRMvfMJUrNm6GP_IsSuuDt_MeQ,141
|
5
5
|
taxcalc/consumption.json,sha256=D4Iz625yka_LSlq313hoy01qGtNrpN5QYAHqd9QQfVA,8102
|
6
6
|
taxcalc/consumption.py,sha256=IS-pB2I0JW3pdXB0vHvqA14AVnkP-TDNYFMx8MmQYIg,3327
|
7
7
|
taxcalc/cps.csv.gz,sha256=SS6tSduU_Eu0EJwzpslnmqMsQQQucVMzzITfH-SeV40,9851074
|
8
8
|
taxcalc/cps_weights.csv.gz,sha256=T3YcFdlgwQduzc1KklxT9CQXTO6Puj682RHxfFpK4IA,13044422
|
9
|
-
taxcalc/data.py,sha256=
|
9
|
+
taxcalc/data.py,sha256=KnVxSbYUF-wn_ZKCo1EHOLOVVK6ldis8vL_EB8oSR2c,11723
|
10
10
|
taxcalc/decorators.py,sha256=uCZGHrq90k5Gr5YA_1tuWkCMEiOPbqXp6wxCWp6cDfM,11332
|
11
11
|
taxcalc/growdiff.json,sha256=im6mp7NZfpROismsNTjwLLAwIEltZsFfV6EKFEG3dKo,15037
|
12
12
|
taxcalc/growdiff.py,sha256=lW0tvVh2WtOOznf1AdAyDzvB-WLb8sgyogCbAOUqXw0,2905
|
13
13
|
taxcalc/growfactors.csv,sha256=OQArKySPTSweIGV9v17WrenfcQa6ABrbTpIWZUqL2Uk,12281
|
14
14
|
taxcalc/growfactors.py,sha256=IdxR6_ELJKJJHd82-gaGcQLVEYNxJpja0bYKNpVlG7A,6557
|
15
15
|
taxcalc/parameters.py,sha256=57RVKpx0i4J0L6lqdgykakO9ASHx9JnkI2tK7yDmvto,31175
|
16
|
-
taxcalc/policy.py,sha256=
|
17
|
-
taxcalc/policy_current_law.json,sha256=
|
16
|
+
taxcalc/policy.py,sha256=pM_q1R7EsSodNBtUoq3maF61flk6TMnADBbuIM3WUiY,6341
|
17
|
+
taxcalc/policy_current_law.json,sha256=eARPB7EpnQgNi5GMX94krF9ZHS_AyTEJjwQljCnkc_Y,658683
|
18
18
|
taxcalc/puf_ratios.csv,sha256=FjEj41SyyW5Fp7JTVptQGKjnu43rfl3uOc9-019bE_s,3439
|
19
19
|
taxcalc/puf_weights.csv.gz,sha256=LouhxTQJ0ow-Yn63PjMElB5ICXO9AybLXeEt3gP5AY4,12988069
|
20
|
-
taxcalc/records.py,sha256=
|
20
|
+
taxcalc/records.py,sha256=deFglkxmHQxtmJ-HCBHLAbLePzgdJjt-qYYNC6jQKfg,18104
|
21
21
|
taxcalc/records_variables.json,sha256=os84mC_BjkdeJffkM1OXFxiJTWztxVgQS6d-GDBHpBk,42903
|
22
|
-
taxcalc/taxcalcio.py,sha256=
|
23
|
-
taxcalc/tmd_growfactors.csv,sha256=Hli-UzRVJZX5HnxuiyarNxMxv_YrNFV8eC-Z-RUsOUw,12611
|
24
|
-
taxcalc/tmd_weights.csv.gz,sha256=U4iQk8dS_QgrRXot65V-L00mTpnXnUd69OIfA-T9D5U,28397340
|
22
|
+
taxcalc/taxcalcio.py,sha256=axkVEPPuBhmnRGxxnE_4JGcatsqPHhC3_sOnWoYfP2k,34843
|
25
23
|
taxcalc/utils.py,sha256=aNIEYbm37pQoayt_rXrr9iKoodoE-DH8EFL2A0rSokk,62468
|
26
24
|
taxcalc/utilsprvt.py,sha256=iIyWp9-N3_XWjQj2jV2CWnJy7vrNlKB2_vIMwYjgbWY,1323
|
27
25
|
taxcalc/assumptions/ASSUMPTIONS.md,sha256=cFQqWn1nScaladVaQ7xNm1jDY8CsGdLmqZEzUZeRrb8,1917
|
28
26
|
taxcalc/assumptions/README.md,sha256=30lU4iLAI9gm9MgtiJtLIlyYM7YeTjkHcjtp8UDgZZo,806
|
29
27
|
taxcalc/assumptions/economic_assumptions_template.json,sha256=LmJjBD4NIIBQpICAmaD2hAj0q3yOVtybljg1ZnwUwic,2601
|
30
28
|
taxcalc/cli/__init__.py,sha256=cyZ0tdx41j_vV_B6GAkqJmNKKG-B0wUC0ThC75lJlk4,104
|
31
|
-
taxcalc/cli/tc.py,sha256=
|
29
|
+
taxcalc/cli/tc.py,sha256=vk9yr8avP3AG8b8X8IpEZxKMfZ4FacE9XvrwmnKw3yM,12083
|
32
30
|
taxcalc/reforms/2017_law.json,sha256=u-xaPSvt5ubfZw1Nb-jNhTNcOPBUJeAX2kJVoEyMgC4,5860
|
33
31
|
taxcalc/reforms/2017_law.out.csv,sha256=CtaYN_oYuxwaPZyEjB6tkfuCxe6VSc9No1VirFLuGQI,470
|
34
32
|
taxcalc/reforms/ARPA.json,sha256=1H9LuJ_QitXRO9e8R3PWizajJgdioIzbGFdvdlt9FVg,3119
|
@@ -56,7 +54,7 @@ taxcalc/reforms/Trump2017.json,sha256=DZjCJQZYe98Skyss7z_Jhj8HJld_FPZeQGxwzGgQIn
|
|
56
54
|
taxcalc/reforms/Trump2017.out.csv,sha256=SQTnFgXOo2QldcSYourBPiK3GsqZa3S3PHkSXQ2MAsA,474
|
57
55
|
taxcalc/reforms/cases.csv,sha256=JQ0LSnNeyl6xSgW5mimGUJMr7xwCWTOpiOpfwx2ETsg,570
|
58
56
|
taxcalc/reforms/clp.out.csv,sha256=5wFsG1tFqGFLVwtL_jKJVC3uzA3auB_n-IAfb7XX96s,355
|
59
|
-
taxcalc/reforms/ext.json,sha256=
|
57
|
+
taxcalc/reforms/ext.json,sha256=syu81FAi8JyD6S3S5Mm7e3JdA6cqm7ssVhKYbTNw0mI,3025
|
60
58
|
taxcalc/reforms/growfactors_ext.csv,sha256=E0szWXtgV5jcpiyvREOz1yXw_poPIBC77bBQI1rlFxM,17733
|
61
59
|
taxcalc/reforms/ptaxes0.json,sha256=QkvqCVkI23sF7FvTHqaUYNpEJYuHNChbKwH0mH7Otp4,1718
|
62
60
|
taxcalc/reforms/ptaxes0.out.csv,sha256=kGn0h67vBzgkEiEhuYjvpspQ-KnndN9gDVVnsIe7S7w,473
|
@@ -66,8 +64,6 @@ taxcalc/reforms/ptaxes2.json,sha256=ULvxjEH4PnGNtOVGtE2rLCqS-jxJS7vwCA1OYbnUgSU,
|
|
66
64
|
taxcalc/reforms/ptaxes2.out.csv,sha256=IHCuN3agvyZfNEbEK1gj3GJO3QPhGGsuRxa3loOLVJs,470
|
67
65
|
taxcalc/reforms/ptaxes3.json,sha256=hTBBNDFEpf-utpVfDlyN1x3-pXRqg_Ajiv-cEjO6Uwc,1055
|
68
66
|
taxcalc/reforms/ptaxes3.out.csv,sha256=WmACaBJMccomMvsTqxxA2VgqhISt1av9I1qHdwvc2uQ,470
|
69
|
-
taxcalc/reforms/rounding2022.json,sha256=0W7h-KrHascdmiJLSaJN1kln78ZwpuhlVxrMl4p_GP8,8388
|
70
|
-
taxcalc/reforms/rounding2022.out.csv,sha256=JC2ZKldeayjw_UmbTbg74tkfhFVgkyMStHlnymD8K_U,475
|
71
67
|
taxcalc/reforms/archive/Clinton2016.json,sha256=AVZuApmbRnCh6UNItG2CzQ2LdW5oT0AYRQpbb3DKPE0,2770
|
72
68
|
taxcalc/reforms/archive/RyanBrady.json,sha256=3G7YBd0M9STZqU5YrMFLAFy9Gh-HO70uGBMjFsIO9Bs,3494
|
73
69
|
taxcalc/reforms/archive/TCJA_House.json,sha256=we4sAXaYC-KCDys_ffOF67Z9wNUvNLA8v53jq5KJphk,4985
|
@@ -80,17 +76,17 @@ taxcalc/tests/benefits_expect.csv,sha256=CFpMpg8a-5iNVSRnmCnl9dncwXx6eGn-KSnTJ2G
|
|
80
76
|
taxcalc/tests/cmpi_cps_expect.txt,sha256=3mkgE4tCyRpowkXiGPaRTAxFk5DGcLEVGVv09qUe3UQ,6268
|
81
77
|
taxcalc/tests/cmpi_puf_expect.txt,sha256=DS2JYr_DWWRNT93GT8Q913ppS__4juzU5lLmFxDI18E,6270
|
82
78
|
taxcalc/tests/conftest.py,sha256=RBXQfYEHaFEDuUwgUY0zduHh4UF4xw555_23kfixMqo,4882
|
83
|
-
taxcalc/tests/cpscsv_agg_expect.csv,sha256=
|
79
|
+
taxcalc/tests/cpscsv_agg_expect.csv,sha256=XpS0CsMNLZ572yhZNFIk_rn76l7hf1n6_gKxEOU_TwM,2085
|
84
80
|
taxcalc/tests/puf_var_correl_coeffs_2016.csv,sha256=31XisiyFhe176VSzXz9RLk7qttHVcoWvoF871kNpWKg,57314
|
85
|
-
taxcalc/tests/puf_var_wght_means_by_year.csv,sha256=
|
86
|
-
taxcalc/tests/pufcsv_agg_expect.csv,sha256=
|
81
|
+
taxcalc/tests/puf_var_wght_means_by_year.csv,sha256=KEONj0v8A6U7bnzlhyB20t2EJYIBrGYVolRqFGfn0is,20049
|
82
|
+
taxcalc/tests/pufcsv_agg_expect.csv,sha256=4qKOGpUQl4MnW-tr3PHVtdpiM116OSK4GhTxLAB6r3Y,2112
|
87
83
|
taxcalc/tests/pufcsv_mtr_expect.txt,sha256=De-wjocJ8X7fEacaSf7iut5PPCwWWGXPgISb0U5iIxE,4265
|
88
84
|
taxcalc/tests/reforms.json,sha256=vGJrvfKJ7h5iAWF-vV9NmY8Z9HP_iereiYiYNcfhBMo,19212
|
89
85
|
taxcalc/tests/reforms_expect.csv,sha256=G28eVkH5KNyFkIKPutEfMidG8sdEXnxSu9QNFCM8Cw4,1468
|
90
86
|
taxcalc/tests/test_4package.py,sha256=xIZ0M9cIe9LVQ1AEgmqKfwiMTH9l4JP1d79Ky9p1mM8,2096
|
91
|
-
taxcalc/tests/test_benefits.py,sha256=
|
92
|
-
taxcalc/tests/test_calcfunctions.py,sha256=
|
93
|
-
taxcalc/tests/test_calculator.py,sha256=
|
87
|
+
taxcalc/tests/test_benefits.py,sha256=cseQyLYxyjBBWJq1yLY0uXzS3FwhIM9oEP4DbZof81M,3387
|
88
|
+
taxcalc/tests/test_calcfunctions.py,sha256=r_6LcQAZBEu6KT-3VJir3rUG0W7GPbhDkIr88dPmb08,31677
|
89
|
+
taxcalc/tests/test_calculator.py,sha256=eSo9c__ublncgjYXHagdeJ9HjlV5ZrlqrE1CPtbi85o,36020
|
94
90
|
taxcalc/tests/test_compare.py,sha256=iYLxopqiKM3H1CHxAbzdi74oydkGb3vq6QgcYVr0qaI,10958
|
95
91
|
taxcalc/tests/test_compatible_data.py,sha256=sG3REUSIL4_yO4JbX3s1pC7SWlvw1gvaswAibB5EiVY,13389
|
96
92
|
taxcalc/tests/test_consumption.py,sha256=14EP69vsMYfLlpZ8UkpN3JSNS54Xp1KvIN5A1fO1k9g,6000
|
@@ -100,14 +96,13 @@ taxcalc/tests/test_decorators.py,sha256=G-zmz78fZ8G6elCuRfe2KFBVOCUFNJHXnF228_FK
|
|
100
96
|
taxcalc/tests/test_growdiff.py,sha256=3KVa0xVHr0bMtApWBCxyaAP3kSQu9_5e0lPb11CY5Ao,3388
|
101
97
|
taxcalc/tests/test_growfactors.py,sha256=8QhU7zk8An3pHUECW0pxbTmE0jzDUo3ayW5eQKKejMQ,2775
|
102
98
|
taxcalc/tests/test_parameters.py,sha256=iVLNoymhLlmHSGw5Ha-763KJ4gCn5ZMJ-HBHHiPK_Uc,20522
|
103
|
-
taxcalc/tests/test_policy.py,sha256=
|
99
|
+
taxcalc/tests/test_policy.py,sha256=5SakpBvchBINOhHXI4jhw3WaoGdJx4HwgwEE7jP3Hig,52929
|
104
100
|
taxcalc/tests/test_puf_var_stats.py,sha256=wdJ6Gf3i_VhyLMqFURZdtvD1u8fepP8dsmxuM1H1GGE,7844
|
105
101
|
taxcalc/tests/test_pufcsv.py,sha256=FuNwf9dR6sPppuBAYI8EPedMGJ5UjCitpq6eJa9EKsA,16556
|
106
102
|
taxcalc/tests/test_records.py,sha256=CmYLJOH63vlm4K96z6Q1nzb1bK_F_rPKehZ0MFKTI4o,8323
|
107
|
-
taxcalc/tests/test_reforms.py,sha256=
|
103
|
+
taxcalc/tests/test_reforms.py,sha256=HEG8YA_F9lmHX4j_0vWzXtTJZc6l6vt8Nu8cjEIUYDo,15855
|
108
104
|
taxcalc/tests/test_responses.py,sha256=-t0-Yr2X8Y1e1KZ4oF6dlt4Ze5jbn8_JQalAee3KPzk,1625
|
109
105
|
taxcalc/tests/test_taxcalcio.py,sha256=f_utdl32H8jbk1ztqnUh_WA12WpxOF4xCNON_eyycm8,24979
|
110
|
-
taxcalc/tests/test_tmdcsv.py,sha256=cFKsh49RLqUHiAzMu3U_Dy2PoS2LpahgSbE5DDM6zFw,1332
|
111
106
|
taxcalc/tests/test_utils.py,sha256=sA2ozKkMRbKyCsiXdeYU5K7w2a1us1Cf5pL9a2NmYpk,29139
|
112
107
|
taxcalc/validation/CSV_INPUT_VARS.md,sha256=MqlZZGt_a1n8JAU-nY5MjnTmjz1pMOuhtpVYIGUgl38,1433
|
113
108
|
taxcalc/validation/CSV_OUTPUT_VARS.md,sha256=wr8oyCJDXcxl4Lu0H_wMofUQYhEIyHDif6vkbas1FGE,3000
|
@@ -136,9 +131,9 @@ taxcalc/validation/taxsim35/expected_differences/b21-taxdiffs-expect.csv,sha256=
|
|
136
131
|
taxcalc/validation/taxsim35/expected_differences/c17-taxdiffs-expect.csv,sha256=YhgojbLowH3yujdYu7SGkdvBZmTgpugu4wYc1Be069M,1125
|
137
132
|
taxcalc/validation/taxsim35/expected_differences/c18-taxdiffs-expect.csv,sha256=g9J4BPbTySV-h-RcLvReJq9v1jscgiRSSZzi0taEA-k,1225
|
138
133
|
taxcalc/validation/taxsim35/expected_differences/c19-taxdiffs-expect.csv,sha256=Ceh15N_Xr3L7cpYjzGa-8NLCV3obc8PNHEhE5ZxSPhI,1238
|
139
|
-
taxcalc-4.
|
140
|
-
taxcalc-4.
|
141
|
-
taxcalc-4.
|
142
|
-
taxcalc-4.
|
143
|
-
taxcalc-4.
|
144
|
-
taxcalc-4.
|
134
|
+
taxcalc-4.3.1.dist-info/LICENSE,sha256=m5epLdB-_NXiY7NsEDgcHP4jDtJ4vOlRf5S3Jb-jraY,1299
|
135
|
+
taxcalc-4.3.1.dist-info/METADATA,sha256=PLF1A_XY2XoMrpWGo-5nu_1YNXPWTDr_HlpvIBIhN2c,3183
|
136
|
+
taxcalc-4.3.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
137
|
+
taxcalc-4.3.1.dist-info/entry_points.txt,sha256=a3ZE1piRv683p27fOLdWZvVJXESkoslTOp5iXV7uVco,50
|
138
|
+
taxcalc-4.3.1.dist-info/top_level.txt,sha256=Wh8wTDHkA_cm4dn8IoUCviDyGgVQqwEQKPJnl8z6d4c,8
|
139
|
+
taxcalc-4.3.1.dist-info/RECORD,,
|
@@ -1,153 +0,0 @@
|
|
1
|
-
// Rounding of parameters to return to currnet law poliy
|
2
|
-
// This file is intended to update parameter values due to IRS rounding
|
3
|
-
// rules when moving from a historical baseline to current law policy
|
4
|
-
// by layering on intervening policy changes, as is done in the
|
5
|
-
// tests/test_reforms.py::test_round_trip_reforms test
|
6
|
-
// N.B. Only valid through 2022 - will overwrite changes in policy
|
7
|
-
// beyond that year (e.g., as in TCJA.json)
|
8
|
-
|
9
|
-
|
10
|
-
{
|
11
|
-
"II_brk1": {"2019": [9700, 19400, 9700, 13850, 19400],
|
12
|
-
"2020": [9875, 19750, 9875, 14100, 19750],
|
13
|
-
"2021": [9950, 19900, 9950, 14200, 19900],
|
14
|
-
"2022": [10275, 20550, 10275, 14650, 20550]},
|
15
|
-
"II_brk2": {"2019": [39475, 78950, 39475, 52850, 78950],
|
16
|
-
"2020": [40125, 80250, 40125, 53700, 80250],
|
17
|
-
"2021": [40525, 81050, 40525, 54200, 81050],
|
18
|
-
"2022": [41775, 83550, 41775, 55900, 83550]},
|
19
|
-
"II_brk3": {"2019": [84200, 168400, 84200, 84200, 168400],
|
20
|
-
"2020": [85525, 171050, 85525, 85500, 171050],
|
21
|
-
"2021": [86375, 172750, 86375, 86350, 172750],
|
22
|
-
"2022": [89075, 178150, 89075, 89050, 178150]},
|
23
|
-
"II_brk4": {"2019": [160725, 321450, 160725, 160700, 321450],
|
24
|
-
"2020": [163300, 326600, 163300, 163300, 326600],
|
25
|
-
"2021": [164925, 329850, 164925, 164900, 329850],
|
26
|
-
"2022": [170050, 340100, 170050, 170050, 340100]},
|
27
|
-
"II_brk5": {"2019": [204100, 408200, 204100, 204100, 408200],
|
28
|
-
"2020": [207350, 414700, 207350, 207350, 414700],
|
29
|
-
"2021": [209425, 418850, 209425, 209400, 418850],
|
30
|
-
"2022": [215950, 431900, 215950, 215950, 431900]},
|
31
|
-
"II_brk6": {"2019": [510300, 612350, 306175, 510300, 612350],
|
32
|
-
"2020": [518400, 622050, 311025, 518400, 622050],
|
33
|
-
"2021": [523600, 628300, 314150, 523600, 628300],
|
34
|
-
"2022": [539900, 647850, 323925, 539900, 647850]},
|
35
|
-
"PT_brk1": {"2019": [9700, 19400, 9700, 13850, 19400],
|
36
|
-
"2020": [9875, 19750, 9875, 14100, 19750],
|
37
|
-
"2021": [9950, 19900, 9950, 14200, 19900],
|
38
|
-
"2022": [10275, 20550, 10275, 14650, 20550]},
|
39
|
-
"PT_brk2": {"2019": [39475, 78950, 39475, 52850, 78950],
|
40
|
-
"2020": [40125, 80250, 40125, 53700, 80250],
|
41
|
-
"2021": [40525, 81050, 40525, 54200, 81050],
|
42
|
-
"2022": [41775, 83550, 41775, 55900, 83550]},
|
43
|
-
"PT_brk3": {"2019": [84200, 168400, 84200, 84200, 168400],
|
44
|
-
"2020": [85525, 171050, 85525, 85500, 171050],
|
45
|
-
"2021": [86375, 172750, 86375, 86350, 172750],
|
46
|
-
"2022": [89075, 178150, 89075, 89050, 178150]},
|
47
|
-
"PT_brk4": {"2019": [160725, 321450, 160725, 160700, 321450],
|
48
|
-
"2020": [163300, 326600, 163300, 163300, 326600],
|
49
|
-
"2021": [164925, 329850, 164925, 164900, 329850],
|
50
|
-
"2022": [170050, 340100, 170050, 170050, 340100]},
|
51
|
-
"PT_brk5": {"2019": [204100, 408200, 204100, 204100, 408200],
|
52
|
-
"2020": [207350, 414700, 207350, 207350, 414700],
|
53
|
-
"2021": [209425, 418850, 209425, 209400, 418850],
|
54
|
-
"2022": [215950, 431900, 215950, 215950, 431900]},
|
55
|
-
"PT_brk6": {"2019": [510300, 612350, 306175, 510300, 612350],
|
56
|
-
"2020": [518400, 622050, 311025, 518400, 622050],
|
57
|
-
"2021": [523600, 628300, 314150, 523600, 628300],
|
58
|
-
"2022": [539900, 647850, 323925, 539900, 647850]},
|
59
|
-
"PT_qbid_taxinc_thd": {"2019": [160700, 321400, 160725, 160700, 321400],
|
60
|
-
"2020": [163300, 326600, 163300, 163300, 326600],
|
61
|
-
"2021": [164900, 329800, 164900, 164900, 329800],
|
62
|
-
"2022": [170050, 340100, 170050, 170050, 340100]},
|
63
|
-
"STD": {"2019": [12200, 24400, 12200, 18350, 24400],
|
64
|
-
"2020": [12400, 24800, 12400, 18650, 24800],
|
65
|
-
"2021": [12550, 25100, 12550, 18800, 25100],
|
66
|
-
"2022": [12950, 25900, 12950, 19400, 25900]},
|
67
|
-
"AMT_em": {"2019": [71700, 111700, 55850, 71700, 111700],
|
68
|
-
"2020": [72900, 113400, 56700, 72900, 113400],
|
69
|
-
"2021": [73600, 114600, 57300, 73600, 114600],
|
70
|
-
"2022": [75900, 118100, 59050, 75900, 118100]},
|
71
|
-
"AMT_em_ps": {"2019": [510300, 1020600, 510300, 510300, 1020600],
|
72
|
-
"2020": [518400, 1036800, 518400, 518400, 1036800],
|
73
|
-
"2021": [523600, 1047200, 523600, 523600, 1047200],
|
74
|
-
"2022": [539900, 1079800, 539900, 539900, 1079800]},
|
75
|
-
"AMT_em_pe": {"2019": 733700,
|
76
|
-
"2020": 745200,
|
77
|
-
"2021": 752800,
|
78
|
-
"2022": 776100},
|
79
|
-
"ALD_BusinessLosses_c": {
|
80
|
-
"2019": [255000, 510000, 255000, 255000, 510000],
|
81
|
-
"2020": [259000, 518000, 259000, 259000, 518000],
|
82
|
-
"2021": [262000, 524000, 262000, 262000, 524000],
|
83
|
-
"2022": [270000, 540000, 270000, 270000, 540000]},
|
84
|
-
"STD_Dep": {"2019": 1100, "2020": 1100, "2021": 1100, "2022": 1150},
|
85
|
-
"STD_Aged": {"2019": [1650, 1300, 1300, 1650, 1300],
|
86
|
-
"2020": [1650, 1300, 1300, 1650, 1300],
|
87
|
-
"2021": [1700, 1350, 1350, 1700, 1350],
|
88
|
-
"2022": [1750, 1400, 1400, 1750, 1750]},
|
89
|
-
"CG_brk1": {"2019": [39375, 78750, 39375, 52750, 78750],
|
90
|
-
"2020": [40000, 80000, 40000, 53600, 80000],
|
91
|
-
"2021": [40400, 80800, 40400, 54100, 80800],
|
92
|
-
"2022": [41675, 83350, 41675, 55800, 83350]},
|
93
|
-
"CG_brk2": {"2019": [434550, 488850, 244425, 461700, 488850],
|
94
|
-
"2020": [441450, 496600, 248300, 469050, 496600],
|
95
|
-
"2021": [445850, 501600, 250800, 473750, 501600],
|
96
|
-
"2022": [459750, 517200, 258600, 488500, 517200]},
|
97
|
-
"AMT_CG_brk1": {"2019": [39375, 78750, 39375, 52750, 78750],
|
98
|
-
"2020": [40000, 80000, 40000, 53600, 80000],
|
99
|
-
"2021": [40400, 80800, 40400, 54100, 80800],
|
100
|
-
"2022": [41675, 83350, 41675, 55800, 83350]},
|
101
|
-
"AMT_CG_brk2": {"2019": [434550, 488850, 244425, 461700, 488850],
|
102
|
-
"2020": [441450, 496600, 248300, 469050, 496600],
|
103
|
-
"2021": [445850, 501600, 250800, 473750, 501600],
|
104
|
-
"2022": [459750, 517200, 258600, 488500, 517200]},
|
105
|
-
"AMT_child_em": { "2019": 7750,
|
106
|
-
"2020": 7900,
|
107
|
-
"2021": 7950,
|
108
|
-
"2022": 8200},
|
109
|
-
"AMT_brk1": {"2019": 194800,
|
110
|
-
"2020": 197900,
|
111
|
-
"2021": 199900,
|
112
|
-
"2022": 206100},
|
113
|
-
"EITC_c": {"2019": [529, 3526, 5828, 6557],
|
114
|
-
"2020": [538, 3584, 5920, 6660],
|
115
|
-
"2021": [1502.0, 3618.0, 5980.0, 6728.0],
|
116
|
-
"2022": [560, 3733, 6164, 6935]},
|
117
|
-
"EITC_ps": {"2019": [8650, 19030, 19030, 19030],
|
118
|
-
"2020": [8790, 19330, 19330, 19330],
|
119
|
-
"2021": [11610, 19520, 19520, 19520],
|
120
|
-
"2022": [9160, 20130, 20130, 20130]},
|
121
|
-
"EITC_ps_MarriedJ": {"2019": [5800, 5790, 5790, 5790],
|
122
|
-
"2020": [5890, 5890, 5890, 5890],
|
123
|
-
"2021": [5940, 5950, 5950, 5950],
|
124
|
-
"2022": [6130, 6130, 6130, 6130]},
|
125
|
-
"EITC_InvestIncome_c": {"2019": 3600,
|
126
|
-
"2020": 3650,
|
127
|
-
"2021": 10000,
|
128
|
-
"2022": 10300},
|
129
|
-
"ETC_pe_Single": {"2019": 68,
|
130
|
-
"2020": 69,
|
131
|
-
"2021": 90,
|
132
|
-
"2022": 90},
|
133
|
-
"ETC_pe_Married": {"2019": 136,
|
134
|
-
"2020": 138,
|
135
|
-
"2021": 180,
|
136
|
-
"2022": 180},
|
137
|
-
"ACTC_c": {"2023": 1600,
|
138
|
-
"2024": 1600,
|
139
|
-
"2025": 1600,
|
140
|
-
"2026": 1000},
|
141
|
-
"FST_AGI_thd_lo": {
|
142
|
-
"2019": [1000000, 1000000, 500000, 1000000, 1000000],
|
143
|
-
"2020": [1000000, 1000000, 500000, 1000000, 1000000],
|
144
|
-
"2021": [1000000, 1000000, 500000, 1000000, 1000000],
|
145
|
-
"2022": [1000000, 1000000, 500000, 1000000, 1000000]
|
146
|
-
},
|
147
|
-
"FST_AGI_thd_hi": {
|
148
|
-
"2019": [2000000, 2000000, 1000000, 2000000, 2000000],
|
149
|
-
"2020": [2000000, 2000000, 1000000, 2000000, 2000000],
|
150
|
-
"2021": [2000000, 2000000, 1000000, 2000000, 2000000],
|
151
|
-
"2022": [2000000, 2000000, 1000000, 2000000, 2000000]
|
152
|
-
}
|
153
|
-
}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
RECID,c00100,standard,c04800,iitax,payrolltax
|
2
|
-
11,30000.00,12400.00,17600.00,114.50,4590.00
|
3
|
-
12,60000.00,12400.00,47600.00,4462.00,9180.00
|
4
|
-
13,460000.00,12400.00,447600.00,131455.00,32754.80
|
5
|
-
21,60000.00,24800.00,35200.00,-3771.00,9180.00
|
6
|
-
22,120000.00,24800.00,95200.00,4924.00,18360.00
|
7
|
-
23,240000.00,24800.00,215200.00,35807.00,36720.00
|
8
|
-
31,30000.00,18650.00,11350.00,-4543.93,4590.00
|
9
|
-
32,60000.00,18650.00,41350.00,880.00,9180.00
|
10
|
-
33,120000.00,18650.00,101350.00,13537.00,18360.00
|
taxcalc/tests/test_tmdcsv.py
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
Tests of Tax-Calculator using tmd.csv input.
|
3
|
-
|
4
|
-
Note that the tmd.csv file that is required to run this program has
|
5
|
-
been constructed in the PSLmodels tax-microdata repository using the
|
6
|
-
2015 IRS SOI PUF file and recent Census CPS data. If you have
|
7
|
-
acquired from IRS the 2015 SOI PUF file and want to execute this program,
|
8
|
-
contact the Tax-Calculator development team to discuss your options.
|
9
|
-
|
10
|
-
Read Tax-Calculator/TESTING.md for details.
|
11
|
-
"""
|
12
|
-
# CODING-STYLE CHECKS:
|
13
|
-
# pycodestyle test_tmdcsv.py
|
14
|
-
# pylint --disable=locally-disabled test_tmdcsv.py
|
15
|
-
|
16
|
-
import pytest
|
17
|
-
# pylint: disable=import-error
|
18
|
-
from taxcalc import Policy, Records, Calculator
|
19
|
-
|
20
|
-
|
21
|
-
@pytest.mark.requires_tmdcsv
|
22
|
-
def test_tmd_input(tmd_fullsample):
|
23
|
-
"""
|
24
|
-
Test Tax-Calculator using full-sample tmd.csv file.
|
25
|
-
"""
|
26
|
-
taxyear = 2022
|
27
|
-
# create a Policy object with current-law policy parameters
|
28
|
-
pol = Policy()
|
29
|
-
# create a Records object containing all tmd.csv input records
|
30
|
-
recs = Records.tmd_constructor(data=tmd_fullsample)
|
31
|
-
# create a Calculator object using current-law policy and tmd records
|
32
|
-
calc = Calculator(policy=pol, records=recs)
|
33
|
-
calc.advance_to_year(taxyear)
|
34
|
-
calc.calc_all()
|
35
|
-
assert calc.data_year == Records.TMDCSV_YEAR
|
36
|
-
assert calc.current_year == taxyear
|
37
|
-
inctax = calc.weighted_total('iitax')
|
38
|
-
assert inctax > 0
|
taxcalc/tmd_growfactors.csv
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
YEAR,ATXPY,ASCHF,ABOOK,ACPIU,ACPIM,AWAGE,ASCHCI,ASCHCL,ASCHEI,ASCHEL,AINTS,ADIVS,ACGNS,ASOCSEC,AUCOMP,AIPD,ABENOTHER,ABENMCARE,ABENMCAID,ABENSSI,ABENSNAP,ABENWIC,ABENHOUSING,ABENTANF,ABENVET
|
2
|
-
2021,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
3
|
-
2022,1.014347,1.742914,1.047552,1.072290,1.040311,1.175282,1.022527,1.022546,1.047553,1.047566,1.049118,1.003358,0.592565,0.855490,0.152665,1.022138,1.030159,1.048769,1.047573,0.999851,1.000000,1.002545,1.034942,1.000000,1.000000
|
4
|
-
2023,1.050108,0.653145,1.091056,1.054020,1.004761,1.050035,1.013156,1.013121,1.091037,1.091047,1.026196,1.126711,1.052500,1.085497,0.748857,1.058072,1.030193,1.050822,1.048715,1.000448,1.000000,1.003807,1.034968,1.000000,1.000000
|
5
|
-
2024,1.046242,0.895528,1.007166,1.025500,1.014070,1.040377,1.039700,1.039630,1.007187,1.007157,1.156028,1.023049,0.932271,1.052921,1.337549,1.054081,1.030334,1.048426,1.051767,0.997760,1.000000,1.002528,1.034951,1.000000,1.000000
|
6
|
-
2025,1.040442,0.963117,1.020457,1.021980,0.958663,1.038977,1.037682,1.037745,1.020415,1.020444,1.091746,1.025380,0.977470,1.031721,1.154874,1.047914,1.030635,1.046248,1.052213,1.002245,1.000000,1.003783,1.034897,1.000000,1.000000
|
7
|
-
2026,1.039294,0.987094,1.014705,1.020740,1.014023,1.035978,1.037783,1.037762,1.014711,1.014716,1.098184,1.019802,0.970235,1.030992,1.035291,1.046856,1.030633,1.072236,1.000000,0.999552,1.000000,1.002513,1.034808,1.000000,1.000000
|
8
|
-
2027,1.037119,0.998822,1.017535,1.019460,1.013312,1.033569,1.034140,1.034138,1.017568,1.017583,1.066606,1.013266,0.993714,1.031791,1.045541,1.044372,1.030788,1.000000,1.000000,1.000000,1.000000,1.002506,1.034863,1.000000,1.000000
|
9
|
-
2028,1.036799,1.006582,1.023966,1.019420,1.013356,1.033042,1.031594,1.031580,1.023985,1.023930,1.050716,1.021542,1.009158,1.033440,1.043558,1.043967,1.030942,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
10
|
-
2029,1.035913,1.010333,1.028149,1.019660,1.013612,1.033365,1.030869,1.030888,1.028085,1.028143,1.030130,1.032091,1.018962,1.033664,1.045739,1.042825,1.031131,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
11
|
-
2030,1.036423,1.010180,1.024121,1.019770,1.013855,1.033210,1.030563,1.030595,1.024170,1.024128,1.036979,1.032934,1.024538,1.034401,1.043738,1.043174,1.031330,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
12
|
-
2031,1.036362,1.010259,1.024733,1.019910,1.014016,1.032812,1.031233,1.031240,1.024699,1.024734,1.039197,1.032793,1.027842,1.036645,1.038241,1.042951,1.031510,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
13
|
-
2032,1.036409,1.009979,1.028000,1.019990,1.014306,1.032126,1.032334,1.032295,1.028004,1.027983,1.040140,1.032610,1.029719,1.036435,1.031319,1.042807,1.031644,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
14
|
-
2033,1.035793,1.008195,1.028130,1.020020,1.014309,1.031481,1.033961,1.033991,1.028128,1.028110,1.031669,1.032460,1.030798,1.037554,1.028443,1.042009,1.031857,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
15
|
-
2034,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
16
|
-
2035,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
17
|
-
2036,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
18
|
-
2037,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
19
|
-
2038,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
20
|
-
2039,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
21
|
-
2040,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
22
|
-
2041,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
23
|
-
2042,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
24
|
-
2043,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
25
|
-
2044,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
26
|
-
2045,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
27
|
-
2046,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
28
|
-
2047,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
29
|
-
2048,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
30
|
-
2049,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
31
|
-
2050,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
32
|
-
2051,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
33
|
-
2052,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
34
|
-
2053,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
35
|
-
2054,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
36
|
-
2055,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
37
|
-
2056,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
38
|
-
2057,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
39
|
-
2058,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
40
|
-
2059,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
41
|
-
2060,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
42
|
-
2061,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
43
|
-
2062,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
44
|
-
2063,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
45
|
-
2064,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
46
|
-
2065,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
47
|
-
2066,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
48
|
-
2067,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
49
|
-
2068,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
50
|
-
2069,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
51
|
-
2070,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
52
|
-
2071,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
53
|
-
2072,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
54
|
-
2073,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
55
|
-
2074,1.035385,1.008203,1.029710,1.020000,1.014443,1.030912,1.033294,1.033253,1.029705,1.029722,1.027096,1.032231,1.031308,1.037480,1.029528,1.041408,1.032059,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000
|
taxcalc/tmd_weights.csv.gz
DELETED
Binary file
|
File without changes
|
File without changes
|
File without changes
|