Type Alias DroppedFeature

Feature dropped during preprocessing

type DroppedFeature = {
    name?: string;
    reason?:
        | "highly_correlated"
        | "has_target_leakage"
        | "is_date_engineered"
        | "feature_with_low_importance";
}
Index

Properties

Properties

name?: string

Name of dropped feature in the dataset

reason?:
    | "highly_correlated"
    | "has_target_leakage"
    | "is_date_engineered"
    | "feature_with_low_importance"

Reason the feature was dropped