shapelets.DataSet.filter#

DataSet.filter(func: Callable[[Any], bool]) DataSet#

Returns the Dataset filtered according to the conditions set by a lambda function (func)

Examples

>>> df.filter(lambda x: x.my_col > 10)