Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.37 KB

File metadata and controls

35 lines (26 loc) · 1.37 KB

ColumnProfileInfo

Statistics for a single column.

Properties

Name Type Description Notes
cardinality int Approximate number of distinct non-null values
data_type str Arrow data type (e.g. "Utf8", "Int32", "Timestamp(Microsecond, Some(\"UTC\"))")
name str Column name
null_count int Number of null values
null_percentage float Percentage of null values (0.0 to 100.0)
profile ColumnProfileDetail [optional]

Example

from hotdata.models.column_profile_info import ColumnProfileInfo

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

# convert the object into a dict
column_profile_info_dict = column_profile_info_instance.to_dict()
# create an instance of ColumnProfileInfo from a dict
column_profile_info_from_dict = ColumnProfileInfo.from_dict(column_profile_info_dict)

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