BookmarkSubscribeRSS Feed
statz
Obsidian | Level 7

Hi, 

 

I was looking for the equations used to calculate the Type III sum of squares obtained from the following code, but I could not find it. I only found the formula for Type I sum of squares, but I need the Type 3 SS. Can anyone lead me to where I can get the Type 3 SS equations, i.e., SS(A),SS(B),SS(A*B),SSE? I apologize that this is not really a SAS question. I appreciate your help. Thanks!

 

Here is the SAS code: 

data try;
input y batch $ time;
DATALINES;
10 A 1
10 A 2
30 A 3
10 B 1
20 B 2
10 B 3
;
run;


proc glm;
class batch;
model y=batch|time/ solution;
run;

 

Here is the SAS output for Type 3 SS: 

Type3SS.png

1 REPLY 1

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 2984 views
  • 0 likes
  • 2 in conversation