I am using Weka and applying J48 to build my classifier. I have 40 features with 2000 instances (700 class a and 1300 class b).
The J48 decision tree is just using 2 features out of 40! Is there anyway to allow J48 to use all features or is there any other algorithm that allows using all features?
Thanks in advance.
Maybe it is because J48 does not need more attributes.
You can check feature's correlation in
Select attribute
tab, and run the selector withRanker
as search method andPrincipal Components
as evaluator. It will show you the relations between each feature and each class, and it will also tell you which are the features that best describe your classes.