Interface IDeriveOptions

interface IDeriveOptions {
    categoricalThreshold:
        | number
        | (unique: number, total: number) => boolean;
    columns: string[];
    datePattern: string | string[];
}

Properties

categoricalThreshold: number | (unique: number, total: number) => boolean

maximal percentage of unique values to be treated as a categorical column

columns: string[]
datePattern: string | string[]

date pattern to check for string matching them

%x