I'm running Gary King's CEM (Coarsened Exact Matching) macro (download here) in the SAS language for a case control study.
I'm using the following macro call format:
options source2;
%include "D:\Project_Files\Matched_Cohort_Study\CEM_SAS_Macro.sas";
%CEM (
lib = out,
dataset = analysis_data,
id = MEMBER_ID,
treat = A,
keep = X1 X2 X3,
del_miss = 0,
match_type = N,
method = "Sturges",
path_graph = D:\Project_Files\Matched_Cohort_Study\,
report = "on"
);
The macro runs without error, but I don't understand the output and there is little documentation to help.
Is there a matched output dataset I can use to estimate the average treatment effect on my outcome variable Y?
Thanks!
How about starting wit this link:
https://gking.harvard.edu/pages/contact
?
Bart
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.