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

ExponentialScale

class
class ExponentialScale(
min_val: ScaleLimitSpec,
max_val: ScaleLimitSpec,
base: ScaleBaseSpec = math.e,
bins: BinCountSpec = MAX_BINS,
use_bin_zero: bool = False,
)

Bases: Scale

Categories: dq-classifier

A scale whose bin edges are spaced exponentially over [min_val, max_val] (used with ScaleCategorizer).

Examples

Bins that narrow as values grow, the mirror of LogarithmicScale:

ScaleCategorizer(
["amount"],
scale=ExponentialScale(0.0, 100.0, base=2.0, bins=8),
)

Parameters

parameter
min_valScaleLimitSpec (StrictInt | StrictFloat)

Lowest value of the scale; an int or float.

parameter
max_valScaleLimitSpec (StrictInt | StrictFloat)

Highest value of the scale; strictly greater than min_val.

parameter
baseScaleBaseSpec (StrictFloat)

Base of the exponent; a float greater than 0 (default e).

parameter
binsBinCountSpec (StrictInt)

Number of bins; a whole number from 1 to 100 (default 100).

parameter
use_bin_zerobool

If False, the minimum value belongs to the first bin; if True, min_val gets its own bin 0.