eds_scikit.biology.utils.config
create_config_from_stats
create_config_from_stats(concepts_sets: List[ConceptsSet], config_name: str, stats_folder: str = 'Biology_summary')
Generate the configuration file from a statistical summary. It is needed [here][eds_scikit.biology.cleaning.transform.transform_measurement]
PARAMETER | DESCRIPTION |
---|---|
concepts_sets |
List of concepts-sets to select
TYPE:
|
config_name |
Name of the folder where the configuration will be saved.
TYPE:
|
stats_folder |
Name of the statistical summary folder
TYPE:
|
Source code in eds_scikit/biology/utils/config.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
|
list_all_configs
list_all_configs() -> List[str]
Helper to get the names of all saved biology configurations
RETURNS | DESCRIPTION |
---|---|
List[str]
|
The configurations names |
Source code in eds_scikit/biology/utils/config.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
|