I have written SAS code to compare two groups for an outcome measure (i.e. reaction time - rt). However, we would like to factor in a demographic measure (i.e. IQ) to test whether the group differences in rt are actually driven by IQ differences between groups. I would like help in modifying my code. My existing code to compute basic group differences in rt is below. I have included code using both the t-test sas function and the glm sas function, which come out with similar results.
data sepdata ;
infile "input.txt" ;
input subjid group IQ rt;
run;
title 'T-test group differences;
proc ttest;
class group;
var rt;
run;
title 'Parallel glm code for group differences ';
proc glm;
class group ;
model rt = group ;
run;
I'd like help on modifying either the t-test function or the glm function to include "IQ" in the model.