CoolFace
Apppublic

hpiatrht/report-analyzer

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes
reference_ranges.py17 linesDownload Raw Back to data
1"""2Medical reference ranges for common tests3"""4 5REFERENCE_RANGES = {6    'hemoglobin': {'male': (13.0, 17.0), 'female': (12.0, 15.5)},7    'glucose_fasting': (70, 100),8    'hba1c': (4.0, 5.6),9    'cholesterol_total': (0, 200),10    'ldl_cholesterol': (0, 100),11    'hdl_cholesterol': {'male': 40, 'female': 50},12    'triglycerides': (0, 150),13    'creatinine': {'male': (0.7, 1.3), 'female': (0.6, 1.1)},14    'tsh': (0.55, 4.78),15    'vitamin_d': (75, 250),16    'vitamin_b12': (211, 911)17}