Member Junction
    Preparing search index...

    bin — discretize a numeric column into bins. Bin edges are fit at train time and frozen.

    interface BinFeatureStep {
        Bins: number;
        Column: string;
        Id: string;
        Inputs?: string[];
        Kind: "bin";
        Label?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Bins: number

    Number of bins to produce.

    Column: string

    Numeric column to bin.

    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: "bin"

    Discriminator selecting the concrete step variant.

    Label?: string

    Optional human-readable label for the visual DAG.