| """Medication effect proxies.""" | |
| from __future__ import annotations | |
| def burden_from_med_count(med_count: int) -> float: | |
| return max(0.0, min(1.0, med_count / 12.0)) | |
| """Medication effect proxies.""" | |
| from __future__ import annotations | |
| def burden_from_med_count(med_count: int) -> float: | |
| return max(0.0, min(1.0, med_count / 12.0)) | |