has_missing¶
- has_missing(X)[source]¶
Check if X has missing values.
- Parameters:
- Xcollection
- input_typestring
One of COLLECTIONS_DATA_TYPES.
- 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)))