Skip to main content

Class: Detector

dg.Detector

Constructors

constructor

new Detector()

Methods

sampleCategories

Static sampleCategories(column, check, min?, max?, ratio?, minStringLength?): boolean

Calls [check] function against a random subset of the column values, returns true if all checks return true. Useful for the efficient auto-detection of the column semantic type.

Parameters

NameTypeDefault valueDescription
columnColumn<any>undefined
checkStringPredicateundefined
minnumber5minimum number of categories. Returns false if less than that.
maxnumber10number of checks to make
rationumber1[0-1] range: minimum allowed number of the success/total checks.
minStringLengthnumber1values shorter than that are not considered checks

Returns

boolean

Defined in

src/data.ts:238