Interface IDeriveOptions

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

Properties

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

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

Type declaration

    • (unique, total): boolean
    • Parameters

      • unique: number
      • total: number

      Returns boolean

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

date pattern to check for string matching them

Default

%x