BookmarkSubscribeRSS Feed
TerrieShaft
Calcite | Level 5

I'm running a MANOVA and I get identical f-values when I ask for the intercept and when I omit it from my statement. This seemed counter intuitive to me, and also to my colleague who uses MANOVA extensively (however he uses SPSS). Can anyone help me understand why this makes no difference? I've included my code below. I'm sure I'm overlooking something basic. 

 

proc glm;
class delay familarity breadth;
model attitude perfave = delay familarity breadth delay*familarity delay*breadth familarity*breadth
                                       delay*familarity*breadth;
manova h= intercept delay familarity breadth delay*familarity delay*breadth familarity*breadth delay*familarity*breadth /summary;
manova h= delay familarity breadth delay*familarity delay*breadth familarity*breadth delay*familarity*breadth /summary;
run;

3 REPLIES 3
Rick_SAS
SAS Super FREQ

There are many F values printed, so I'm not sure which ones you are concerned about. Are you talking about the MultStat table?

Run the following program and look in the log to find the name of the tables:

 

proc glm data=sashelp.class;
class sex age;
model weight height = sex | age;
manova h= intercept sex|age /summary;
manova h= sex|age /summary;
run;
Ksharp
Super User

model weight height = sex | age/ nouni;

TerrieShaft
Calcite | Level 5

Thanks. I think I finally sorted it out. SAS fits an intercept b/c of the class variables - I didn't realize it until I tried to specify NOINT (see SAS log details below). I suspected it was including an intercept but this verifies it. 

NOTE: Due to the presence of CLASS variables, an intercept is implicitly fitted. R-Square has
been corrected for the mean.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1763 views
  • 0 likes
  • 3 in conversation