I've got a question about finding the predictive value of certain attributes. In my question it is suggested that I transform my attributes to binary classes and then apply "decision stump" to find out the predictive value of each attribute. How do I do this?
I checked out this question But that's not really what I mean.
Thanks in advance, Rope.
You can find the most predictive attributes using the methods found under the
Select Attributes
tab in Weka'sExplorer
.Yeah, the Select Attributes tab in Weka analyzes your attributes and ranks which ones provide the most information gain. Under Attribute Evaluator, choose InfoGainAttributeEval and choose Ranker for search method. It works quite well in my experience.