Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
How is IQ coded? Is it discrete or continuous? – Joe Nov 9 '12 at 1:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.