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 3bca88e commit 488a9d1Copy full SHA for 488a9d1
jhu/tests/test_smooth.py
@@ -9,14 +9,14 @@ def test_output_files_smoothed(self, run_as_module):
9
dates = [str(x) for x in range(20200303, 20200310)]
10
11
smoothed = pd.read_csv(
12
- join("./receiving", f"{dates[-1]}_state_confirmed_7dav_cumulative_num.csv")
+ join("./receiving", f"{dates[-1]}_state_confirmed_7dav_incidence_num.csv")
13
)
14
15
# Build a dataframe out of the individual day files
16
raw = pd.concat(
17
[
18
pd.read_csv(
19
- join("./receiving", f"{date}_state_confirmed_cumulative_num.csv")
+ join("./receiving", f"{date}_state_confirmed_incidence_num.csv")
20
21
for date in dates
22
]
0 commit comments