BookmarkSubscribeRSS Feed
farhad
Calcite | Level 5

hi

i need 3x3 factorial design anova formula for this plan :

3 repeats

 Independent variabels and levels :

NOZ(1,2,3)
PRES(1,2,3)
SPED(1,2,3)

dependent variabels :

sc1,sc2,sc3

i need :

anova.

The interaction between variables.

tanks.

i attache a sampel of my data :

 

 

 

4 REPLIES 4
Ksharp
Super User
Did you check PROC GLM for MANOVA? Especial for its examples.

farhad
Calcite | Level 5

hi

no, i didnot.

where i can see exampels?

farhad
Calcite | Level 5
i test this code:
proc anova;
class noz pres sped ;
model sc1-sc3=noz | pres | sped | noz *pres | noz *sped | pres*sped | noz * pres* sped;
means noz | pres | sped | noz *pres | noz *sped | pres*sped | noz * pres* sped /duncan alpha= 0.05;
run;

proc anova;
class nozpres nozsped pressped nozpressped;
model sc1-sc3=nozpres | nozsped |pressped | nozpressped;
means nozpres | nozsped |pressped | nozpressped /duncan alpha= 0.05;
run;
Ksharp
Super User
Search its documentation at support.sas.com 
and you will find its examples.

Example 46.6: Multivariate Analysis of Variance


proc glm data=pottery;
class Site;
model Al Fe Mg Ca Na = Site;
contrast 'Llanederyn vs. the rest' Site 1 1 1 -3;
manova h=_all_ / printe printh;
run;



hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 4 replies
  • 3111 views
  • 1 like
  • 2 in conversation