Skip to content

Commit 1aa181c

Browse files
alexcodakrivard
andauthored
Update quidel_covidtest/delphi_quidel_covidtest/pull.py
Co-authored-by: Katie Mazaitis <[email protected]>
1 parent 18ae072 commit 1aa181c

File tree

1 file changed

+1
-1
lines changed
  • quidel_covidtest/delphi_quidel_covidtest

1 file changed

+1
-1
lines changed

quidel_covidtest/delphi_quidel_covidtest/pull.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def fix_date(df, logger):
9999
df.insert(2, "timestamp", df["TestDate"])
100100

101101
mask = df["TestDate"] <= df["StorageDate"]
102-
logger.info(f"Removing {((len(df) - np.sum(mask)) * 100 / len(df)):.2f} of unusual data")
102+
logger.info(f"Removing {((len(df) - np.sum(mask)) * 100 / len(df)):.2f}% of unusual data")
103103
df = df[mask]
104104

105105
mask = df["StorageDate"] - df["TestDate"] > pd.Timedelta(days=90)

0 commit comments

Comments
 (0)