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 9d65e9e commit 48eb714Copy full SHA for 48eb714
covid_xprize/oxford_data/oxford_data.py
@@ -231,7 +231,7 @@ def prepare_cases_dataframe(data_url: str) -> pd.DataFrame:
231
232
233
def threshold_min_cases(df: pd.DataFrame) -> pd.DataFrame:
234
- # Remove all rows with too few cases
+ """Remove all rows with too few cases"""
235
return df.drop(df[df.ConfirmedCases < MIN_CASES].index)
236
237
0 commit comments