What is the primary purpose of applying a Min-Max Scaler to a feature set? Data ScienceMedium Try Now
Which preprocessing step is required to prevent data leakage when using cross-validation? Data ScienceMedium Try Now
from sklearn.preprocessing import KBinsDiscretizer enc = KBinsDiscretizer(n_bins=5, encode=’ordinal’, strategy=’uniform’) enc.fit_transform(X) What is the primary behavior of this configuration? Data ScienceHard Try Now
What is the primary risk of using Target Encoding on a categorical feature with high cardinality? Data ScienceHard Try Now
What is the consequence of applying RobustScaler to a feature containing extreme outliers in a small dataset? Data ScienceHard Try Now
Which issue arises when applying PowerTransformer with ‘yeo-johnson’ to a feature containing negative values and zeros? Data ScienceHard Try Now
What is the primary risk of using IterativeImputer on a dataset with high multicollinearity among features? Data ScienceHard Try Now
What is the result of applying a Log transformation to a feature with a right-skewed distribution? Data ScienceMedium Try Now
What is the primary purpose of using a ‘drop=’ argument in OneHotEncoder when handling binary categorical features? Data ScienceMedium Try Now
What is the primary consequence of failing to scale features before applying a K-Nearest Neighbors (KNN) algorithm? Data ScienceMedium Try Now
Which scenario necessitates the use of One-Hot Encoding over Label Encoding for categorical variables? Data ScienceMedium Try Now
What is the primary effect of using the ‘median’ strategy in SimpleImputer compared to the ‘mean’ strategy? Data ScienceMedium Try Now
from sklearn.impute import KNNImputer imputer = KNNImputer(n_neighbors=5, weights=’distance’) imputer.fit_transform(X) What is the primary behavior of this configuration? Data ScienceHard Try Now
Which problem occurs when using Target Encoding on a categorical feature with very low frequency categories? Data ScienceHard Try Now
What is the effect of applying a QuantileTransformer with output_distribution=’normal’ to a uniform distribution? Data ScienceHard Try Now
Which issue arises when using MICE (Multivariate Imputation by Chained Equations) on a dataset with high multicollinearity? Data ScienceHard Try Now
What is the primary consequence of applying standard scaling to a feature with a bimodal distribution? Data ScienceHard Try Now
Which method is most appropriate for scaling features when the dataset contains significant outliers? Data ScienceMedium Try Now