I have performed Logistic Regression analysis on a data set that contains 6 binary factors and 1 continuous factor. Then I repeat the analysis after converting the continuous parameter to binary by thresholding (0 if <= threshold, 1 otherwise).
With the first analysis I get the following Lack of Fit table in the report
Lack Of Fit
Source | DF | -LogLikelihood | ChiSquare |
Lack Of Fit | 1.85e+7 | 4433.7627 | 8867.525 |
Saturated | 1.85e+7 | 387.7085 | Prob>ChiSq |
Fitted | 7 | 4821.4712 | 1.0000 |
When I repeat the analysis after converting the continuous variable to binary I get the following Lack of Fit table in which Prob>ChiSq is now 0.0009 in place of the earlier value of 1.0000.
Lack Of Fit
Source | DF | -LogLikelihood | ChiSquare |
Lack Of Fit | 120 | 87.1476 | 174.2951 |
Saturated | 127 | 4778.6278 | Prob>ChiSq |
Fitted | 7 | 4865.7753 | 0.0009* |
I cannot find the description of Lack of Fit in the documentation for Nominal Logistic Fit Report. In the context of "Lack of Fit", do I want the value to be close to 1 for the model to be fitting well to the data? What does the asterisk next to 0.0009 mean?