DataTypeStat¶
-
class
oci.data_connectivity.models.
DataTypeStat
(**kwargs)¶ Bases:
object
Statistical data in profiling results
Methods
__init__
(**kwargs)Initializes a new DataTypeStat object with values from keyword arguments. Attributes
confidence
Gets the confidence of this DataTypeStat. freq
Gets the freq of this DataTypeStat. freq_percentage
Gets the freq_percentage of this DataTypeStat. value
Gets the value of this DataTypeStat. -
__init__
(**kwargs)¶ Initializes a new DataTypeStat object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - value (str) – The value to assign to the value property of this DataTypeStat.
- confidence (int) – The value to assign to the confidence property of this DataTypeStat.
- freq (int) – The value to assign to the freq property of this DataTypeStat.
- freq_percentage (float) – The value to assign to the freq_percentage property of this DataTypeStat.
-
confidence
¶ Gets the confidence of this DataTypeStat. Placeholder for now, in future we will return the confidence of the profile result (because we are using sampled data and not whole data)
Returns: The confidence of this DataTypeStat. Return type: int
-
freq
¶ Gets the freq of this DataTypeStat. How many times that value occurred.
Returns: The freq of this DataTypeStat. Return type: int
-
freq_percentage
¶ Gets the freq_percentage of this DataTypeStat. Frequency percentage across the sampled row counts (excluding nulls).
Returns: The freq_percentage of this DataTypeStat. Return type: float
-
value
¶ Gets the value of this DataTypeStat. Value of the confidence of the profile result
Returns: The value of this DataTypeStat. Return type: str
-