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 9947fe5 commit 9d49381Copy full SHA for 9d49381
src/penn_chime/charts.py
@@ -1,5 +1,3 @@
1
-#!/usr/bin/env python
2
-from typing import Optional
3
4
from altair import Chart # type: ignore
5
import pandas as pd # type: ignore
@@ -75,7 +73,7 @@ def admitted_patients_chart(
75
73
y_scale.clamp = True
76
74
77
return (
78
- alt.Chart(census)#.head(plot_projection_days))
+ alt.Chart(census.head(plot_projection_days))
79
.transform_fold(fold=["Hospitalized Census", "ICU Census", "Ventilated Census"])
80
.mark_line(point=True)
81
.encode(
0 commit comments