Spaces:
Running
Running
File size: 171 Bytes
877add7 | 1 2 3 4 5 6 7 8 | """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))
|