Skip to main content
GuideServerConfigure and deploy Tabsdata servers on your machine.TutorialsConfigure data integration workflows within a running Tabsdata server.Advanced TutorialsBuild end-to-end workflows between two specific systems.API ReferenceCLI ReferenceRelease Notes
Version: 2.0.0

Classifiers

BetweenClassifierA boolean classifier that checks if a value is within a specified range.
BoolClassifierAbstract base class for classifiers with a boolean verdict.
CategorizerAbstract base class for classifiers that assign each value to a bin.
ClassifierAbstract base class for all data quality classifiers.
DoesNotMatchA boolean classifier that checks whether a value does not match a regular expression.
ExponentialScaleA scale whose bin edges are spaced exponentially over [min_val, max_val] (used with ScaleCategorizer).
HasLengthA boolean classifier that checks whether a value's length is within a range.
IdentityScaleA scale where every integer in [min_val, max_val) maps to its own bin (used with ScaleCategorizer).
InClassifierA boolean classifier that checks if a value is in a specified set of values.
IsBetweenA boolean classifier that checks whether a value is inside a range.
IsFalseA boolean classifier that checks whether a value is False.
IsInA boolean classifier that checks whether a value is in a set of values.
IsNanA boolean classifier that checks whether a value is NaN (not a number).
IsNegativeA boolean classifier that checks whether a numeric value is negative.
IsNegativeOrZeroA boolean classifier that checks whether a numeric value is negative or zero.
IsNotBetweenA boolean classifier that checks whether a value is outside a range.
IsNotInA boolean classifier that checks whether a value is not in a set of values.
IsNotNanA boolean classifier that checks whether a value is not NaN.
IsNotNullA boolean classifier that checks whether a value is not null.
IsNotNullNorNanA boolean classifier that checks whether a value is neither null nor NaN.
IsNotZeroA boolean classifier that checks whether a numeric value is not zero.
IsNullA boolean classifier that checks whether a value is null.
IsNullOrNanA boolean classifier that checks whether a value is null or NaN.
IsPositiveA boolean classifier that checks whether a numeric value is positive.
IsPositiveOrZeroA boolean classifier that checks whether a numeric value is positive or zero.
IsTrueA boolean classifier that checks whether a value is True.
IsZeroA boolean classifier that checks whether a numeric value is zero.
LinearScaleA scale that splits [min_val, max_val] into equal-width bins (used with ScaleCategorizer).
LogarithmicScaleA scale whose bin edges are spaced logarithmically over [min_val, max_val] (used with ScaleCategorizer).
MatchClassifierA boolean classifier that checks if a value matches a regex pattern.
MatchesA boolean classifier that checks whether a value matches a regular expression.
MonomialScaleA power-law scale over [min_val, max_val] whose bin widths grow as a power of the value (used with ScaleCategorizer).
ScaleAbstract base class for the scales used by ScaleCategorizer.
ScaleCategorizerA classifier that assigns each value to a bin defined by a Scale.