Skip to content

Commit

Permalink
🐛 education: EdStats fixing data provider's bug in formal education d…
Browse files Browse the repository at this point in the history
…ata (#3600)
  • Loading branch information
veronikasamborska1994 authored Nov 23, 2024
1 parent b2c4ac1 commit 221da23
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions etl/steps/data/garden/wb/2024-11-04/edstats.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ def run(dest_dir: str) -> None:
# Rename columns based on metadata
tb = rename_columns(tb, metadata_tb)

# Convert the share of the population with no education to a percentage (bug in the data)
tb[
"wittgenstein_projection__percentage_of_the_population_age_15plus_by_highest_level_of_educational_attainment__no_education__total"
] *= 100
tb = tb.format(["country", "year"])

#
Expand Down

0 comments on commit 221da23

Please sign in to comment.