BookmarkSubscribeRSS Feed
coolmac
Calcite | Level 5

Trying to find the relationship between AGE (continuous) and GENDER (categorical) variables in my dataset using SAS (v9.4). I used the below code.

 

proc glm data = myfile;
class GENDER;
 model AGE = GENDER / solution;
run;

 

How to verify if the LINE assumptions of a linear regression model are met or violated in the above case (using SAS)?

L - Linear

I - Independent

N - Normality

E -Equal Variance

 

Please provide the SAS code to be able to do that.

1 REPLY 1
Reeza
Super User
With this case, your question simplifies to the assumptions of an ANOVA/T-test so you're mostly ok as long as your variances are similar.

You can use PROC NPAR1WAY to assess distributions.

To test for equal variances see this example:
https://documentation.sas.com/?docsetId=statug&docsetVersion=15.1&docsetTarget=statug_glm_examples10...

Note the PLOT=Diagnostics which will provide some diagnostic plots.

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
  • 386 views
  • 0 likes
  • 2 in conversation