rnalysis.filtering.CountFilter.drop_columns

CountFilter.drop_columns(columns: ColumnNames, inplace: bool = True)

Drop specific columns from the table.

Parameters
  • columns (str or list of str) – The names of the column/columns to be dropped fro mthe table.

  • 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 and filtered instance of the Filter object.