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;



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