Solved – Algorithms and methods for attribute/feature selection

data miningfeature selectionmachine learningr

I have data with continuous class and I'm searching for good methods to reduce number of attributes. Now I'm using correlation based filters, random forests and Gram–Schmidt algorithm.

What I want to achieve is answer which attributes are more important/relevant to class attribute than others.

By using methods that I mentioned before I can reach this goal, but is there any other good algorithms worth noticing?

Best Answer

My heart will be always with RF, but still you may take a look at Rough Sets. Especially LERS works quite good in case of massively disturbed data.
You may also try with importance obtained from other classifiers, like SVMs or Random Naive Bayes.

Related Question