|
|
|
|
|
by pacbard
714 days ago
|
|
No, it's a coding error that lead to a wacky subsample being used for their treatment variable. The blog post list this as the original Stata code: > replace event`i’ = 1 if delta_mct`i’ != 0 | spouse_delta_mct`i’ != 0 and this as the correct one: > replace event`i’ = 1 if (delta_mct`i’ != 0 | spouse_delta_mct`i’ != 0) & delta_mct`i’ != . & spouse_delta_mct`i’ != . It looks like the authors didn't properly handle missing values in Stata, leading to marking people with missing health information being marked as being "severely ill" instead of being excluded from the analysis. It's an unfortunate mistake, but it happens. |
|
(Honest question)