eds_scikit.biology.viz.wrapper
plot_biology_summary
plot_biology_summary(measurement: DataFrame, value_column: str = 'value_as_number', unit_column: str = 'unit_source_value', save_folder_path: str = 'Biology_summary', stats_only: bool = False, terminologies: List[str] = None, debug: bool = False) -> Union[alt.ConcatChart, pd.DataFrame]
Aggregate measurements, create plots and saves all the concepts-sets in folder.
PARAMETER | DESCRIPTION |
---|---|
data |
Instantiated
TYPE:
|
save_folder_path |
Name of the folder where the plots will be saved
TYPE:
|
stats_only |
If
TYPE:
|
terminologies |
biology summary only on terminologies codes columns
TYPE:
|
value_column |
value column for distribution summary plot
TYPE:
|
debug |
If
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[alt.ConcatChart, pd.DataFrame]
|
Altair plots describing the volumetric and the distribution properties of your biological data along with a pandas DataFrame with a statistical summary |
Source code in eds_scikit/biology/viz/wrapper.py
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
|