Member Junction
    Preparing search index...

    impute — fill missing values for a column using the given strategy. Fitted at train time (e.g. the mean/median learned from training data) and replayed at scoring (plan §6.2).

    interface ImputeFeatureStep {
        Column: string;
        FillValue?: string | number;
        Id: string;
        Inputs?: string[];
        Kind: "impute";
        Label?: string;
        Strategy: "mean" | "median" | "mode" | "constant";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Column: string

    Column to impute.

    FillValue?: string | number

    Fill value when Strategy is constant.

    Id: string

    Stable id for this step, referenced by downstream steps' Inputs.

    Inputs?: string[]

    Ids of upstream steps that feed this step (DAG edges).

    Kind: "impute"

    Discriminator selecting the concrete step variant.

    Label?: string

    Optional human-readable label for the visual DAG.

    Strategy: "mean" | "median" | "mode" | "constant"

    Fill strategy.