Question 91:
You work for a car manufacturer as a machine learning specialist. Your marketing team wants to use a marketing strategy to market to different consumer segments based on how the features of each of their cars resonate with their customer base. The dataset with which you have to work contains many features about each car, such as color, size, number of doors, number of speakers, type of roof, type of auto-assist, etc. Through your exploratory modeling, you have found many of these features are redundant, meaning they don’t offer anything further to your algorithm’s performance. Your dataset contains a large number of observations and a large number of features. How would you solve this redundant feature problem most efficiently and expeditiously?
Answer options:
A.Keep all the features and use the XGBoost algorithm to account for redundant features. B.Use Sparse Feature Graph to remove the redundant features. C.Use Principal Component Analysis to reduce the number of features. D.Keep all the features and use the Random Cut Forest algorithm to account for redundant features.