Skip to content

Commit a2f8ea5

Browse files
Merge pull request #35 from RolfHendriks/main
Gender Gap by Country and Scenario 2030
2 parents acf6771 + d9afcb7 commit a2f8ea5

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def add_country_codes(data: pd.DataFrame) -> pd.DataFrame:
2+
country_codes = pd.read_csv('data/iso_country_codes.csv')[['Alpha-3 code', 'English short name lower case']].rename(columns = {
3+
'Alpha-3 code': 'iso3',
4+
'English short name lower case': 'country'
5+
})
6+
data = data.merge(country_codes)
7+
return data

Team_Projects/GenerationNext/project.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,8 @@ Use the **visualization** to shared graphs and visualizations as candidates for
2323

2424
## Challenge Category Area
2525

26-
Jobs and Youth: Exploring the future of education & jobs
26+
Jobs and Youth: Exploring the future of education & jobs
27+
28+
## Presentation
29+
30+
https://docs.google.com/presentation/d/1bVU_nHqXdNctsIdWkq2USkipOO9iweeFuGN3_w4i1SM/edit?slide=id.p#slide=id.p

0 commit comments

Comments
 (0)