BookmarkSubscribeRSS Feed
Tal
Pyrite | Level 9 Tal
Pyrite | Level 9

Hi guys,

I have two models that i need to compare by  conducting  a F-test but got no clue how

y=b0+b1x1+b2x2

y=b0+b1x1+b2x2+b3x3

I did google and came across this :

proc reg data = mydata ;

        model y = x1 x2 x3 ;

        test x3 = 0;

run ;

Is this something that i need to do,anyone please?

3 REPLIES 3
PGStats
Opal | Level 21

I would suggest to take some basic statistical training to learn why the test statement is redundant and how to interpret the analysis of variance of your model to determine if variable x3 is useful to predict y.

PG

PG
Tal
Pyrite | Level 9 Tal
Pyrite | Level 9

my second model is  actually more complicated than it  shows here in my post. For example lets say it is b0+b1x1+b2X2+....+b6x6

and i know how to test the null hypothesis based on the global F test regardless of whether the individual variables (x3-x6) contribute to the model or not but are  satisfactory F and p  results  for the second model enough to chose it over the  1st model?
so there is no way i can compare these models and based on F and p determine if the complete model is good to go or not without running them separately ?

SteveDenham
Jade | Level 19

A likelihood ratio test seems in order here.  Fit the full and reduced models in PROC MIXED, and get the difference in -2 log likelihood values.  This will be distributed as a chi square with degrees of freedom equal to the number of parameters "deleted" by reducing the model.

Steve Denham

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 3938 views
  • 8 likes
  • 3 in conversation