Hello,
I need to compare means before and after study entry to see if there is a statistically significant difference between the two, and am wondering what the best way would be to evaluate this? I wanted to do logistic regression; however am unsure how to set this up.
I need to do this for three separate models: ER visits, Hospital visits and Jail visits - and need to see if the average visits is different before and after study entry (in order to assess impact of treatment/counseling on these visits).
Here is how the means are setup:
proc means data=CostDrivers;
var ERDAYS_PRE_4 ERDAYS_PRE_3 ERDAYS_3 ERDAYS_4;
var HOSPDAYS_PRE_4 HOSPDAYS_PRE_3 HOSPDAYS_3 HOSPDAYS_4;
var JAILDAYS_PRE_4 JAILDAYS_PRE_3 JAILDAYS_3 JAILDAYS_4;
run;
ERDAYS_PRE_4 = 12 months before study entry whereas ERDAYS_4 = 12 months POST study entry.
Any ideas?
Thanks!