src.fairreckitlib.data.filter

This package contains functionality for filtering dataframes.

Modules:

base_filter: Base class for data filters.
categorical_filter: Class to filter on categorical data.
count_filter: Class to filter on the number of appearances of each value of a column.
filter_config: subset/filter(pass) configuration classes.
filter_config_parsing: parse data subset/filter(pass) configurations.
filter_constants: Constants to be used in other modules.
filter_event: Event args and a print function for a filter event.
filter_factory: Create filter factory with available data filters.
numerical_filter: Class to filter on a range of numerical data.

This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences)

 1"""This package contains functionality for filtering dataframes.
 2
 3Modules:
 4
 5    base_filter: Base class for data filters.
 6    categorical_filter: Class to filter on categorical data.
 7    count_filter: Class to filter on the number of appearances of each value of a column.
 8    filter_config: subset/filter(pass) configuration classes.
 9    filter_config_parsing: parse data subset/filter(pass) configurations.
10    filter_constants: Constants to be used in other modules.
11    filter_event: Event args and a print function for a filter event.
12    filter_factory: Create filter factory with available data filters.
13    numerical_filter: Class to filter on a range of numerical data.
14
15This program has been developed by students from the bachelor Computer Science at
16Utrecht University within the Software Project course.
17© Copyright Utrecht University (Department of Information and Computing Sciences)
18"""