numpy.ma.compress_rowcols()

numpy.ma.compress_rowcols

numpy.ma.compress_rowcols(x, axis=None) [source]

Suppress the rows and/or columns of a 2-D array that contain masked values.

The suppression behavior is selected with the axis parameter.

  • If axis is None, both rows and columns are suppressed.
  • If axis is 0, only rows are suppressed.
  • If axis is 1 or -1, only columns are suppressed.
Parameters:

x : array_li