BookmarkSubscribeRSS Feed
LucyB
Obsidian | Level 7

I have some one group pre-post data and I am looking at differences between a group variable (binary) and the pre post change in the score outcome.

My code for the analysis is below:

 

proc glm data=data;
    class group;
    model pre post = group / nouni;
    repeated time 2 (1 2) / printe;
    lsmeans group / stderr;
run;

3 REPLIES 3
Ksharp
Super User

I would try PROC MIXED instead of PROC GLM.

Check GLM documenation to see how to transform Repeated Measure from GLM into MIXED.

 

change your data structure as

 

data have;

 set x;

sub+1;

 time=1;value=pre;output;

time=2;value=post;output;

run;

 

 

proc mixed data=have;

class group time;

model value=group;

repeated time/type=un solution subject=sub;

lsmean group/pdiff cl;

run;

 

LucyB
Obsidian | Level 7

but does this still not make the same assumptions? my outcome is skewed.

Ksharp
Super User
If you are trying to do Repeated Measure,
I suggest you use PROC MIXED , not GLM .
GLM can't do the real mixed model .


sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

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.

Discussion stats
  • 3 replies
  • 1977 views
  • 4 likes
  • 2 in conversation