has_missing

has_missing(X)[source]

Check if X has missing values.

Parameters:
Xcollection

See aeon.utils.data_types.COLLECTIONS_DATA_TYPES for details.

Returns:
boolean

True if there are any missing values, False otherwise

Raises:
ValueError

Input_type not in COLLECTIONS_DATA_TYPES.

Examples

>>> from aeon.utils.validation import has_missing
>>> m = has_missing( np.zeros(shape=(10, 3, 20)))