BookmarkSubscribeRSS Feed
Juan_Manriquez
Calcite | Level 5

How I can run the equation to determine the difference between two slopes in SAS?

 

t = (b1 - b2) / SQRT(s^2b1 + s^2b2), df = n1 + n2 -4

 

b = slope ; s = standard error ; df = degree of freedom and n = sample size

 

Thanks in advance,

 

Juan Manriquez

2 REPLIES 2
PaigeMiller
Diamond | Level 26

This is equivalent to testing if the two slopes are equal. To do that, in a regression sense, you fit an interaction, and if the interaction is not statistically significant, then the two slopes are not statistically different.

 

For example, if the class variable ID contains values 1 and 2, and this is used to produce two slopes

 

proc glm data=have;
    class id;
    model y = id x id*x;
run;
quit;
--
Paige Miller
Juan_Manriquez
Calcite | Level 5
Thanks Paige, I will check it
Juan

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
  • 2 replies
  • 356 views
  • 2 likes
  • 2 in conversation