File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -159,14 +159,14 @@ Let's compare the results from both simple and machine learning-adjusted local e
159159
160160 # Compute LDTE: Treatment vs Control
161161 ldte_simple, lower_simple, upper_simple = simple_local_estimator.predict_ldte(
162- target_treatment_arm = 1 , # Z=1 Selected for treatment (Enrolled )
163- control_treatment_arm = 0 , # Z=0 Not selected for treatment (Not enrolled )
162+ target_treatment_arm = 1 , # Z=1 Selected in lottery for Medicaid (treatment assignment )
163+ control_treatment_arm = 0 , # Z=0 Not selected in lottery for Medicaid (control assignment )
164164 locations = outcome_ed_costs_locations
165165 )
166166
167167 ldte_ml, lower_ml, upper_ml = ml_local_estimator.predict_ldte(
168- target_treatment_arm = 1 , # Selected for treatment (Enrolled )
169- control_treatment_arm = 0 , # Not selected for treatment (Not enrolled )
168+ target_treatment_arm = 1 , # Z=1 Selected in lottery for Medicaid (treatment assignment )
169+ control_treatment_arm = 0 , # Z=0 Not selected in lottery for Medicaid (control assignment )
170170 locations = outcome_ed_costs_locations
171171 )
172172
You can’t perform that action at this time.
0 commit comments