Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

CategoryValueInfo

A distinct value with its frequency count, used in categorical profiles.

Properties

Name Type Description Notes
count int Number of occurrences
value object The distinct value (as a string, or null)

Example

from hotdata.models.category_value_info import CategoryValueInfo

# TODO update the JSON string below
json = "{}"
# create an instance of CategoryValueInfo from a JSON string
category_value_info_instance = CategoryValueInfo.from_json(json)
# print the JSON string representation of the object
print(CategoryValueInfo.to_json())

# convert the object into a dict
category_value_info_dict = category_value_info_instance.to_dict()
# create an instance of CategoryValueInfo from a dict
category_value_info_from_dict = CategoryValueInfo.from_dict(category_value_info_dict)

[Back to Model list] [Back to API list] [Back to README]