1
vote
0answers
169 views

SAS Using proc ttest or proc glm to factor a demographic variable into a comparison of two groups on an outcome measure

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 ...
0
votes
0answers
225 views

Proc GLM ODS number format

How do you format the parameter estimates from ODS in Proc GLM in SAS? My code is proc glm data = dat; model y = x1 x2 ; ods output ParameterEstimates=parmsdat ; run ; I want to ...
0
votes
1answer
1k views

How to do Tukey's HSD post-hoc test after 1-way RM ANOVA in SAS?

I run the following lines: DATA abc; INPUT AA BB CC DD EE; CARDS; ... ; RUN; PROC GLM DATA = abc; MODEL AA BB CC DD EE = / NOUNI; REPEATED conditions 5 (1 2 3 4 5) / PRINTE; MEANS ...
8
votes
2answers
895 views

R glm standard error estimate differences to SAS PROC GENMOD

I am converting a SAS PROC GENMOD example into R, using glm in R. The SAS code was: proc genmod data=data0 namelen=30; model boxcoxy=boxcoxxy ~ AGEGRP4 + AGEGRP5 + AGEGRP6 + AGEGRP7 + AGEGRP8 + RACE1 ...