Skip to main content

DatasetFieldStatistics

Index

Properties

empty_count

empty_count: int | None

How many items in the dataset are undefined, meaning that for example empty string is not considered empty.

max

max: float | None

Maximum value of the field. For numbers, this is calculated directly. For strings, this is the length of the longest string. For arrays, this is the length of the longest array. For objects, this is the number of keys in the largest object.

min

min: float | None

Minimum value of the field. For numbers, this is calculated directly. For strings, this is the length of the shortest string. For arrays, this is the length of the shortest array. For objects, this is the number of keys in the smallest object.

model_config

model_config: Undefined

null_count

null_count: int | None

How many items in the dataset have a null value for this field.