whylogs.core.configs#

Module Contents#

Classes#

Attributes#

whylogs.core.configs.hll_lg_k: int = 12#
whylogs.core.configs.kll_k: int = 256#
whylogs.core.configs.fi_lg_max_k: int = 10#
whylogs.core.configs.fi_disabled: bool = False#
whylogs.core.configs.track_unicode_ranges: bool = False#
whylogs.core.configs.large_kll_k: bool = True#
whylogs.core.configs.kll_k_large: int = 1024#
whylogs.core.configs.unicode_ranges: Dict[str, Tuple[int, int]]#
whylogs.core.configs.lower_case: bool = True#
whylogs.core.configs.normalize: bool = True#
whylogs.core.configs.max_frequent_item_size: int = 128#
whylogs.core.configs.identity_column: Optional[str]#
whylogs.core.configs.column_batch_size: Optional[int] = 1024#
class whylogs.core.configs.FrequentItemsErrorType#

Bases: int, enum.Enum

int([x]) -> integer int(x, base=10) -> integer

Convert a number or string to an integer, or return 0 if no arguments are given. If x is a number, return x.__int__(). For floating point numbers, this truncates towards zero.

If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance representing an integer literal in the given base. The literal can be preceded by ‘+’ or ‘-’ and be surrounded by whitespace. The base defaults to 10. Valid bases are 0 and 2-36. Base 0 means to interpret the base from the string as an integer literal. >>> int(‘0b100’, base=0) 4

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

NO_FALSE_NEGATIVES = 1#
NO_FALSE_POSITIVES = 0#
to_datasketches_type() whylogs_sketching.frequent_items_error_type#
Return type

whylogs_sketching.frequent_items_error_type

as_integer_ratio()#

Return integer ratio.

Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.

>>> (10).as_integer_ratio()
(10, 1)
>>> (-10).as_integer_ratio()
(-10, 1)
>>> (0).as_integer_ratio()
(0, 1)
bit_length()#

Number of bits necessary to represent self in binary.

>>> bin(37)
'0b100101'
>>> (37).bit_length()
6
conjugate()#

Returns self, the complex conjugate of any int.

to_bytes()#

Return an array of bytes representing an integer.

length

Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes.

byteorder

The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value.

signed

Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

name()#

The name of the Enum member.

value()#

The value of the Enum member.

class whylogs.core.configs.SummaryConfig#
disabled_metrics: List[str]#
frequent_items_error_type: FrequentItemsErrorType#
frequent_items_limit: int#
hll_stddev: int = 1#