Thank you for your response. This may be true. However, I doubt it because when you operate a forward (or stepwise) variable selection using proc logistic, the result of the score test for each candidate variable is provided. However, in this case, the results of each score test seems to correspond to a comparison of the current model vs. the current model + one variable. To make it clearer, let's take an example: When i run the following SAS code : " proc logistic desc; model end4_unexplained = age antiplatelet nihss0h / selection=forward slstay=0.10 details; run; " At step 1, the variable "nihss0h" is entered in the model. A the end of step 1, a list of variables eligible for entry is provided, with a Score Chi-Square and corresponding P-value for each candidate variable (please see the image associated to this message). I believe that the P-value for the variable "age" corresponds to a comparison, using the Score Test, of the model with the variables "age" and "nihss0h", versus the model containing only "nihss0h". Is this correct ? If so, back to the main question of this topic (displaying the results of a Score test for each variable using proc logistic): do you think that such a test can not apply to this situation, or that it is simply not provided by proc logistic ?
... View more