src.fairreckitlib.data.split
This package contains functionality for splitting dataframes into a train and test set.
Modules:
base_splitter: base class for data splitters.
random_splitter: class for splitting randomly.
split_config: splitter configuration class.
split_config_parsing: parse splitter configuration.
split_constants: constants to be used in other modules.
split_event: event args and a print function for a splitting event.
split_factory: create splitter factory with available data splitters.
temporal_splitter: class for splitting on time.
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 splitting dataframes into a train and test set. 2 3Modules: 4 5 base_splitter: base class for data splitters. 6 random_splitter: class for splitting randomly. 7 split_config: splitter configuration class. 8 split_config_parsing: parse splitter configuration. 9 split_constants: constants to be used in other modules. 10 split_event: event args and a print function for a splitting event. 11 split_factory: create splitter factory with available data splitters. 12 temporal_splitter: class for splitting on time. 13 14This program has been developed by students from the bachelor Computer Science at 15Utrecht University within the Software Project course. 16© Copyright Utrecht University (Department of Information and Computing Sciences) 17"""