rnalysis.filtering.FoldChangeFilter.filter_missing_values

FoldChangeFilter.filter_missing_values(opposite: bool = False, inplace: bool = True)

Remove all rows with missing values.

Parameters
  • opposite (bool) – If True, the output of the filtering will be the OPPOSITE of the specified (instead of filtering out X, the function will filter out anything BUT X). If False (default), the function will filter as expected.

  • inplace (bool (default=True)) – If True (default), filtering will be applied to the current Filter object. If False, the function will return a new Filter instance and the current instance will not be affected.

Returns

If ‘inplace’ is False, returns a new instance of the Filter object.