DP-100 · Question #120
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might…
The correct answer is B. No. PCA (Principal Component Analysis) is a dimensionality reduction technique that creates new orthogonal components from linear combinations of existing features. It does not address class imbalance - it has no mechanism to increase representation of underrepresented classes…
Question
Options
- AYes
- BNo
How the community answered
(51 responses)- A20% (10)
- B80% (41)
Explanation
PCA (Principal Component Analysis) is a dimensionality reduction technique that creates new orthogonal components from linear combinations of existing features. It does not address class imbalance - it has no mechanism to increase representation of underrepresented classes. Applying PCA when one class has very few observations would still leave those observations in the minority; the components would still reflect the dominant class's variance. To handle class imbalance, sampling strategies such as oversampling (SMOTE) or undersampling the majority class are required. The solution does not meet the goal.
Topics
Community Discussion
No community discussion yet for this question.