Statistical Procedures

Programming the statistical procedures from SAS
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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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
  • 3019 views
  • 1 like
  • 2 in conversation