Type Alias Feature

A feature (column) from your dataset

type Feature = {
    changeType?: ChangeType;
    dataType?: DataType;
    featureType?: FeatureType;
    include?: boolean;
    name?: string;
    parentFeature?: string;
}
Index

Properties

changeType?: ChangeType

Indicates if you want to change the featureType for this feature within the experiment version

dataType?: DataType
featureType?: FeatureType

The default feature type based on the feature's data type. If you want a value to be interpreted differently (e.g. 0/1 as categorical/boolean instead of numeric), use changeType.

include?: boolean

Include this feature in your experiment version? Default here is based on insights for this feature (e.g. willBeDropped).

name?: string
parentFeature?: string