We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21c7339 commit dcb0de1Copy full SHA for dcb0de1
src/penn_chime/charts.py
@@ -30,6 +30,7 @@ def new_admissions_chart(
30
else:
31
x_kwargs = {"shorthand": "day", "title": "Days from today"}
32
33
+ # TODO fix the fold to allow any number of dispositions
34
return (
35
alt.Chart(projection_admits.head(plot_projection_days))
36
.transform_fold(fold=["hospitalized", "icu", "ventilated"])
@@ -70,6 +71,7 @@ def admitted_patients_chart(
70
71
y_scale.domain = (0, max_y_axis)
72
y_scale.clamp = True
73
74
75
76
alt.Chart(census.head(plot_projection_days))
77
0 commit comments