hccinfhir 0.2.1__py3-none-any.whl → 0.2.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hccinfhir/__init__.py +2 -1
- hccinfhir/data/ra_labels_2026.csv +784 -0
- hccinfhir/datamodels.py +138 -6
- hccinfhir/defaults.py +3 -1
- hccinfhir/extractor_834.py +552 -359
- hccinfhir/hccinfhir.py +10 -10
- hccinfhir/model_calculate.py +18 -2
- hccinfhir/sample_files/sample_834_02.txt +1 -0
- hccinfhir/sample_files/sample_834_03.txt +1 -0
- hccinfhir/sample_files/sample_834_04.txt +1 -0
- hccinfhir/sample_files/sample_834_05.txt +1 -0
- hccinfhir/sample_files/sample_834_06.txt +1 -0
- hccinfhir/utils.py +68 -1
- {hccinfhir-0.2.1.dist-info → hccinfhir-0.2.3.dist-info}/METADATA +147 -5
- {hccinfhir-0.2.1.dist-info → hccinfhir-0.2.3.dist-info}/RECORD +17 -11
- {hccinfhir-0.2.1.dist-info → hccinfhir-0.2.3.dist-info}/WHEEL +0 -0
- {hccinfhir-0.2.1.dist-info → hccinfhir-0.2.3.dist-info}/licenses/LICENSE +0 -0
hccinfhir/__init__.py
CHANGED
|
@@ -9,7 +9,7 @@ from .hccinfhir import HCCInFHIR
|
|
|
9
9
|
from .extractor import extract_sld, extract_sld_list
|
|
10
10
|
from .filter import apply_filter
|
|
11
11
|
from .model_calculate import calculate_raf
|
|
12
|
-
from .datamodels import Demographics, ServiceLevelData, RAFResult, ModelName
|
|
12
|
+
from .datamodels import Demographics, ServiceLevelData, RAFResult, ModelName, HCCDetail
|
|
13
13
|
|
|
14
14
|
# Sample data functions
|
|
15
15
|
from .samples import (
|
|
@@ -37,6 +37,7 @@ __all__ = [
|
|
|
37
37
|
"ServiceLevelData",
|
|
38
38
|
"RAFResult",
|
|
39
39
|
"ModelName",
|
|
40
|
+
"HCCDetail",
|
|
40
41
|
|
|
41
42
|
# Sample data
|
|
42
43
|
"SampleData",
|