Mask whole rows and/or columns of a 2D array that contain masked values. The masking behavior is selected with the axis parameter.
- If axis is None, rows and columns are masked.
- If axis is 0, only rows are masked.
- If axis is 1 or -1, only columns are masked.
Parameters: | axis : int, optional
|
---|---|
Returns: | a *pure* ndarray. : |