File tree Expand file tree Collapse file tree
Team_Projects/GenerationNext Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments