Hi,
Is it possible to know which variables are most important at Random Forest and how they are selected ?
thanks
moshe
Use Decision Tree PROC HPSPLIT . and Check the documentation, there is already an example to do this . Example 61.5: Assessing Variable Importance proc hpsplit data=MBE_Data maxdepth=6; class Usable Dopant; model Usable = gTemp aTemp Rot Dopant; prune none; run;
Thanks ,
Is there a mathematical description of how the explanatory variables selected,
Moshe
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.