cfdm.Data.mask¶
-
Data.
mask
¶ The Boolean missing data mask of the data array.
The Boolean mask has True where the data array has missing data and False otherwise.
See also
- Returns
Examples
>>> d.shape (12, 73, 96) >>> m = d.mask >>> m.dtype dtype('bool') >>> m.shape (12, 73, 96)