What is the primary purpose of applying a PowerTransformer with the Box-Cox method? Data ScienceMedium Try Now
Which statement correctly describes the behavior of mean imputation on a dataset with significant outliers? Data ScienceMedium Try Now
What is the primary effect of applying One-Hot Encoding to a categorical feature with high cardinality? Data ScienceMedium Try Now
Which effect occurs when applying a log transformation to a feature with a heavy right-skew and a very small constant offset? Data ScienceHard Try Now
from sklearn.preprocessing import OrdinalEncoder enc = OrdinalEncoder(handle_unknown=’use_encoded_value’, unknown_value=-1) enc.fit(X_train) enc.transform(X_test) What is the result of this configuration when encountering an unseen category in the test set? Data ScienceHard Try Now
What is the primary risk of using K-Nearest Neighbors (KNN) imputation when the feature space is not properly scaled? Data ScienceHard Try Now
Which issue arises when applying Yeo-Johnson transformation to a feature containing a significant number of zero values? Data ScienceHard Try Now
What is the primary consequence of applying MICE (Multivariate Imputation by Chained Equations) to a dataset with high multicollinearity? Data ScienceHard Try Now
Which statement accurately describes the impact of target leakage during the preprocessing phase? Data ScienceHard Try Now
from sklearn.preprocessing import RobustScaler scaler = RobustScaler(quantile_range=(25.0, 75.0)) X_scaled = scaler.fit_transform(X) What is the primary advantage of this approach over StandardScaler? Data ScienceHard Try Now
What is the effect of using K-Nearest Neighbors (KNN) imputation on a dataset with high-dimensional feature space? Data ScienceHard Try Now
Which consequence arises from applying Box-Cox transformation to a feature containing negative values? Data ScienceHard Try Now
What is the primary risk of using mean imputation on a feature that exhibits a non-random missingness mechanism? Data ScienceHard Try Now
Which technique is most effective for handling skewed numerical features before applying a model that assumes normality? Data ScienceHard Try Now
from sklearn.preprocessing import StandardScaler scaler = StandardScaler() X_scaled = scaler.fit_transform(X_train) X_test_scaled = scaler.transform(X_test) Why is it critical to use transform instead of fit_transform on the test set? Data ScienceHard Try Now
What is the effect of applying one-hot encoding to a high-cardinality categorical feature in a linear model? Data ScienceHard Try Now
What is the primary risk of applying Min-Max scaling to a feature containing significant outliers? Data ScienceHard Try Now
What is the result of the following TypeScript code snippet regarding type inference? let value = “Hello”; value = 42; TypeScript ProfessionalEasy Try Now