简体   繁体   中英

How do I rank a list of features that I have picked out in the given data and rank the features?

I am currently doing ML on house prediction dataset. > dataset

How do I select 10 best features in my dataset for aiding in building a model for predicting SalePrice and how to rank the 10 features ?

You can use a feature ranking algorithm like "ReliefF"or use a dimensionality reduction technique like PCA, which will transform all of your features into your desired number of features.

This is also a good link for learning more about feature selection: https://machinelearningmastery.com/feature-selection-machine-learning-python/

You might also need to convert strings to numbers in features where the values are alphanumeric in nature.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM