cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
juvelva
Level I

Lack of fit test

Hi all JMPers,

Does anyone know what saturated model is used in the LACK OF FIT test? More specifically, when running Fit Model, say by Standard Least Squares, I get the table of Lack Of Fit as following:

11868_lack_of_fit_test.jpg.

My understanding is that:

1) p-value gives me that the model can be improved by adding interaction terms,

2) Max RSq is obtained by the saturated model.

Is my understanding correct? If so, is there a way I can get the saturated model in JMP?

Thank you all!

1 ACCEPTED SOLUTION

Accepted Solutions
jiancao
Staff

Re: Lack of fit test

Yes, your understating is correct.

If so, is there a way I can get the saturated model in JMP?

Yes, you can run such model with some data prep.

(Caution-a saturated model is over-parameterized to the point that it is essentially interpolating the data. It is not a sound modeling practice.) 

(1) The screenshot shows a linear regression fit to predict HEIGHT with SEX and WEIGHT as predictors. Although this main effect model doesn't appears to be under-fit, Max R Sq indicates a saturated model would achieve R Sq at 0.8872.

11883_pastedImage_2.png

(2) To do this Combine predictor variables to form a grouping variable, SEX_WEIGHT, so that I can assigns a parameter to each unique combination of the predictors. Use the Combine Columns to get it

11884_pastedImage_4.png

(3) Refit the model using SEX_WEIGHT as the predictor . As shown, R Square is indeed 0.8872. There are 32 parameter estimates (plus intercept)  in the model.

11885_pastedImage_23.png

View solution in original post

3 REPLIES 3
jiancao
Staff

Re: Lack of fit test

Yes, your understating is correct.

If so, is there a way I can get the saturated model in JMP?

Yes, you can run such model with some data prep.

(Caution-a saturated model is over-parameterized to the point that it is essentially interpolating the data. It is not a sound modeling practice.) 

(1) The screenshot shows a linear regression fit to predict HEIGHT with SEX and WEIGHT as predictors. Although this main effect model doesn't appears to be under-fit, Max R Sq indicates a saturated model would achieve R Sq at 0.8872.

11883_pastedImage_2.png

(2) To do this Combine predictor variables to form a grouping variable, SEX_WEIGHT, so that I can assigns a parameter to each unique combination of the predictors. Use the Combine Columns to get it

11884_pastedImage_4.png

(3) Refit the model using SEX_WEIGHT as the predictor . As shown, R Square is indeed 0.8872. There are 32 parameter estimates (plus intercept)  in the model.

11885_pastedImage_23.png

juvelva
Level I

Re: Lack of fit test

Thanks a million!

This is a great answer, although I didn't find the Combine Column, ​I am using JMP Pro 11.0, but I got the idea.

jiancao
Staff

Re: Lack of fit test

Yes, Combine Columns along with many other column utilities were added  in JMP 12.

Recommended Articles