
Predictor Importance for Bagged Trees in Classification Learner App??
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ciara Sypherd
am 23 Jan. 2019
Kommentiert: ANTONIO MARIA CORUZZOLO
am 29 Apr. 2020
Hello,
I have sucessfully used BaggedTrees in the classificationLearner app to classify my data. I would now like to know (and show) which of my predictors are most useful in determining class. How can I do this?
The scatter plots generated in the app are helpful, but not what I am looking for. I want something like a bar graph that shows the most and least relevant predictors, or ideally a decision tree which shows which predictors give the greatest class separations.
I have found examples of this with different set ups, but I can't figure out how to make them work for me. The command I have seen to make decision trees is: view(trainedModel.ClassificationTree,'Mode','graph')
I have also seen the predictor importance found using: imp = predictorImportance(ens)
However, these methods have not worked for me. My code is simply a data importation and the command to call the classifier: fit = trainedModel2.predictFcn(Table);
Any help would be HUGELY appreciated.
Thanks,
Ciara
0 Kommentare
Akzeptierte Antwort
Stephan
am 24 Jan. 2019
Hi,
"I have sucessfully used BaggedTrees in the classificationLearner app to classify my data..."
1. Make sure to have exported the model (not the compact model) from the classification learner app. Then you find something like this by double click on your trained model in workspace. Important is that you have a ClassificationBaggedEnsemble:

2. If you have this model as a ClassificationBaggedEnsemble in your workspace, you can use:
Importance = oobPermutedPredictorImportance(trainedModel.ClassificationEnsemble);
bar(Importance)
Best regards
Stephan
2 Kommentare
ANTONIO MARIA CORUZZOLO
am 29 Apr. 2020
I'm looking how to find the accuracy of the rules of my object fitctree anyone know how ?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Classification Ensembles finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!