Skip to content

Commit dcb0de1

Browse files
committed
Add todo in charts
1 parent 21c7339 commit dcb0de1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/penn_chime/charts.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def new_admissions_chart(
3030
else:
3131
x_kwargs = {"shorthand": "day", "title": "Days from today"}
3232

33+
# TODO fix the fold to allow any number of dispositions
3334
return (
3435
alt.Chart(projection_admits.head(plot_projection_days))
3536
.transform_fold(fold=["hospitalized", "icu", "ventilated"])
@@ -70,6 +71,7 @@ def admitted_patients_chart(
7071
y_scale.domain = (0, max_y_axis)
7172
y_scale.clamp = True
7273

74+
# TODO fix the fold to allow any number of dispositions
7375
return (
7476
alt.Chart(census.head(plot_projection_days))
7577
.transform_fold(fold=["hospitalized", "icu", "ventilated"])

0 commit comments

Comments
 (0)