filter¶
- DataFrames.filter(conditional)[source]¶
Filters the data frames container.
- Args:
- conditional (callable):
A callable that evaluates to a boolean for a given item.
- Returns:
getml.pipeline.DataFrames
:A container of filtered data frames.
- Example:
big_frames = getml.project.data_frames.filter(lambda frame: frame.memory_usage > 1000)