BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Saszealot
Calcite | Level 5

I can't reconcile the variable importance using decision trees and regression on sas on demand for academics 6.2 miner. In particular I'm  using the data PVA97NK. In otherwords, their ranking are not the same.

Any help is welcomed.

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
DougWielenga
SAS Employee

The regression and tree-based models work in very different ways.  The regression builds a model that attempts to describe the relationship between the target and involves estimating parameters that are then multiplied by variable values to predict the outcome. Decision trees do not build a parametric model and must be evaluated differently.  

 

There are also many differences in how regression and decision tree models perform on different data sets.  

    * Regression models do a better job of describing smoothly changing relationships than a decision tree which would need to create many cutpoints to accomplish the same.

    * Decision trees handle missing values whereas regression models must have those values imputed meaning the two methods are not even working on the same training data when missing values are present in the original training data.

    * Regression models require you to specify the exact functional form of the relationship whereas decision trees do not assume any specific relationship.

    * Decision trees are (typically) far more flexible than regression models allowing them to automatically model complex interactions and non-linear relationships that would need to be described explicitly in a regression model.

    * You cannot pick one of these methods as the superior method overall since it depends on the data you are fitting

    

For all these reasons, you should not expect that the variable importance reported by a decision tree is going to parallel what you would see from the corresponding regression model fit to the same data.  


I hope this helps!
Doug

View solution in original post

1 REPLY 1
DougWielenga
SAS Employee

The regression and tree-based models work in very different ways.  The regression builds a model that attempts to describe the relationship between the target and involves estimating parameters that are then multiplied by variable values to predict the outcome. Decision trees do not build a parametric model and must be evaluated differently.  

 

There are also many differences in how regression and decision tree models perform on different data sets.  

    * Regression models do a better job of describing smoothly changing relationships than a decision tree which would need to create many cutpoints to accomplish the same.

    * Decision trees handle missing values whereas regression models must have those values imputed meaning the two methods are not even working on the same training data when missing values are present in the original training data.

    * Regression models require you to specify the exact functional form of the relationship whereas decision trees do not assume any specific relationship.

    * Decision trees are (typically) far more flexible than regression models allowing them to automatically model complex interactions and non-linear relationships that would need to be described explicitly in a regression model.

    * You cannot pick one of these methods as the superior method overall since it depends on the data you are fitting

    

For all these reasons, you should not expect that the variable importance reported by a decision tree is going to parallel what you would see from the corresponding regression model fit to the same data.  


I hope this helps!
Doug

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to choose a machine learning algorithm

Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1184 views
  • 0 likes
  • 2 in conversation