DP-100 · Question #30
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. Quantiles binning creates bins with approximately equal numbers of samples, which improves on Equal Width, but it still ignores the relationship between the feature bins and the target variable. For a supervised task - predicting a target column - optimal binning should account…
Question
Options
- AYes
- BNo
How the community answered
(26 responses)- A23% (6)
- B77% (20)
Explanation
Quantiles binning creates bins with approximately equal numbers of samples, which improves on Equal Width, but it still ignores the relationship between the feature bins and the target variable. For a supervised task - predicting a target column - optimal binning should account for how well bin boundaries separate target classes. Methods like Entropy MDL (Minimum Description Length) determine bin boundaries by maximizing information gain with respect to the target, making the bins directly informative for prediction. Quantiles with PQuantile normalization is an unsupervised binning approach that does not optimize for target predictability, so it does not fully meet the goal.
Topics
Community Discussion
No community discussion yet for this question.