gapminder.csv

The data in gapminder.csv contains data on 6 attributes for 193 countries. These data, based on 2017 measures collected by World Bank, were compiled by gapminder.org and made available free under the CC-BY license. The variables are:


Preview

# Import Data
gapminder = readr::read_csv(file = "https://raw.githubusercontent.com/zief0002/rustic-penguin/main/data/gapminder.csv")

# View data
gapminder
# A tibble: 193 × 8
   country      region income income_level life_exp    co2 co2_change population
   <chr>        <chr>   <dbl> <chr>           <dbl>  <dbl> <chr>           <dbl>
 1 Afghanistan  Asia     2.03 Level 1          62.7  0.254 increase      37.2   
 2 Albania      Europe  13.3  Level 3          78.4  1.59  increase       2.88  
 3 Algeria      Africa  11.6  Level 3          76    3.69  increase      42.2   
 4 Andorra      Europe  58.3  Level 4          82.1  6.12  decrease       0.077 
 5 Angola       Africa   6.93 Level 2          64.6  1.12  decrease      30.8   
 6 Antigua and… Ameri…  21    Level 3          76.2  5.88  increase       0.0963
 7 Argentina    Ameri…  22.7  Level 3          76.5  4.41  decrease      44.4   
 8 Armenia      Europe  12.7  Level 3          75.6  1.89  decrease       2.95  
 9 Australia    Asia    49    Level 4          82.9 16.9   decrease      24.9   
10 Austria      Europe  55.3  Level 4          82.1  7.75  decrease       8.89  
# ℹ 183 more rows


References

FREE DATA FROM WORLD BANK VIA GAPMINDER.ORG, CC-BY LICENSE