eds_scikit.event.icd10
conditions_from_icd10
conditions_from_icd10(condition_occurrence: DataFrame, visit_occurrence: Optional[DataFrame] = None, codes: Optional[Dict[str, Union[str, List[str]]]] = None, date_from_visit: bool = True, additional_filtering: Dict[str, Any] = None, date_min: Optional[datetime] = None, date_max: Optional[datetime] = None) -> DataFrame
Phenotyping based on ICD-10 codes.
PARAMETER | DESCRIPTION |
---|---|
condition_occurrence |
TYPE:
|
visit_occurrence |
TYPE:
|
codes |
Dictionary which values are ICD-10 codes (as a unique string or as a list) and which keys are at least one of the following:
TYPE:
|
date_from_visit |
If set to
TYPE:
|
additional_filtering |
An optional dictionary to filter the resulting DataFrame. Keys should be column names on which to filter, and values should be either
Default filetring is condition_status_source_value in {"DP", "DAS", "DR"}
TYPE:
|
date_min |
The minimum code datetime to keep. Depends on the
TYPE:
|
date_max |
The minimum code datetime to keep. Depends on the
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
DataFrame
|
"event" DataFrame including the following columns:
|
Source code in eds_scikit/event/icd10.py
9 10 11 12 13 14 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 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 |
|