cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
fishguy
Level I

Standard betas for logistic regression

I would like to compare strength of effect in my logistic regression model.  In least squares models I can bring up and compare standardized beta coefficients.  Can this be done with logistic models?  (I don't see the option in "columns" option).  Or, is there another method to compare the strength of effect of each of my terms in the model?

 

Thanks

Fishguy

4 REPLIES 4

Re: Standard betas for logistic regression

This command in Fit Least Squares is convenient, but all it is doing is centering and scaling the continuous predictors. You can accomplish the same thing yourself with a column formula. It is easy to do:

 

  1. Select the predictor columns in the data table.
  2. Right-click the header for one of them.
  3. Select New Column Formula > Distributional > Standardize.

 

Now use these columns in place of the original columns when you set up your modeling in Fit Model dialog. Using the Fitness data table in the sample data folder, I fit a model Oxy versus Age through MaxPulse. I created the standardized version of the predictors and used them for the linear predictor of a second fit. I exported the Parameter Estimates as a data table for each and concatenated them so I could examine them together. Here are the results:

 

parm est.JPG

 

Notice that the p-values are identical between the two fits. Then I plotted the estimates, where the importance is clearer:

 

bar chart.JPG

 

Only Runtime seemed to be important when using the original predictors. Runtime, RunPulse, and MaxPulse seem to be important when using the standardized predictors.

 

Both models produce identical predictions, of course.

 

Another technique is built into the Prediction Profiler that might be helpful for your purpose: Variable Importance.

fishguy
Level I

Re: Standard betas for logistic regression

Thanks for the reply!  So my model has a mix of predictors that are continuous and a couple that are binary.  Do I standardize all the predictor variables in the model?

 

Thanks again:)

Re: Standard betas for logistic regression

Categorical variables are always coded so no need. See help here and here for more information.

fishguy
Level I

Re: Standard betas for logistic regression

Great, thanks!