Skip to content

Commit

Permalink
fix index
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrodes committed May 24, 2024
1 parent 482739b commit 9252b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etl/steps/data/garden/who/2022-09-30/ghe.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def run(dest_dir: str) -> None:

# read dataset from meadow
ds_meadow = paths.meadow_dataset
df = pd.DataFrame(ds_meadow["ghe"])
df = pd.DataFrame(ds_meadow["ghe"]).reset_index()
df = df.drop(columns="flag_level")
# Load countries regions
regions_dataset: Dataset = paths.load_dataset("regions")
Expand Down

0 comments on commit 9252b4f

Please sign in to comment.