Skip to content

Commit

Permalink
✨ Remove DRC from annotation (#3161)
Browse files Browse the repository at this point in the history
* remove DRC from annotation

* explorer update
  • Loading branch information
spoonerf authored Aug 20, 2024
1 parent 57c6cac commit c77ebb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion etl/steps/data/explorers/who/latest/monkeypox.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def run(dest_dir: str) -> None:
# Load garden dataset.
# Load garden dataset
ds_garden = paths.load_dataset("monkeypox")

# Read table from garden dataset.
Expand Down
3 changes: 1 addition & 2 deletions etl/steps/data/garden/who/latest/monkeypox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ def run(dest_dir: str) -> None:
country_mask = tb_both["country"] == "Democratic Republic of Congo"
tb_both["annotation"] = ""
tb_both.loc[country_mask, "annotation"] = (
tb_both.loc[country_mask, "annotation"]
+ "Democratic Republic of Congo: Includes only confirmed deaths as reported by WHO"
tb_both.loc[country_mask, "annotation"] + "Includes only confirmed deaths as reported by WHO"
)
tb_both["annotation"].metadata.origins = origins
tb_both = tb_both.format(["country", "date"])
Expand Down

0 comments on commit c77ebb0

Please sign in to comment.