Health Nutrition And Population Statistics
Examining Global Health, Population & Nutrition Trends
@kaggle.sazidthe1_health_nutrition_and_population_statistics
Examining Global Health, Population & Nutrition Trends
@kaggle.sazidthe1_health_nutrition_and_population_statistics
HealthStats compiles an extensive array of health, nutrition, and population statistics gleaned from a diverse array of global sources. Encompassing themes ranging from population dynamics to health financing and disease prevalence, this repository covers a broad spectrum of indicators, including immunization rates, infectious diseases, HIV/AIDS, and population projections. Additionally, HealthStats presents nuanced statistics categorized by wealth quintiles, offering a comprehensive view of societal disparities.
Within this dataset, a compendium of 470 indicators sheds light on critical metrics such as immunization rates, malnutrition prevalence, and vitamin A supplementation across 266 countries worldwide. Spanning a timeframe from 1960 to 2022, this data collection encapsulates yearly statistics, providing a comprehensive historical perspective on health, nutrition, and population dynamics.
This dataset (health_nutrition_population_statistics.csv) covering from 1960 up to 2022 includes the following columns:
| Column Name | Description |
|---|---|
Country Name |
Name of the Country |
Country Code |
3 Digit Country/Territories Code |
Country Name |
Name of the Country |
Indicator Name |
Name of the Indicator |
Indicator Code |
Code of the Indicator |
1960 |
Population of the Country in the year 1960 |
1961 |
Population of the Country in the year 1961 |
1962 |
Population of the Country in the year 1962 |
| ' ' ' | ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' |
2020 |
Population of the Country in the year 2010 |
2021 |
Population of the Country in the year 2000 |
2022 |
Population of the Country in the year 1990 |
The primary dataset was retrieved from the World Bank's Data Catalog. I would like to express our sincere appreciation to the World Bank team for providing the core data used in this dataset.
© Image credit: Freepik
CREATE TABLE health_nutrition_population_statistics (
"country_name" VARCHAR,
"country_code" VARCHAR,
"indicator_name" VARCHAR,
"indicator_code" VARCHAR,
"n_1960" DOUBLE -- 1960,
"n_1961" DOUBLE -- 1961,
"n_1962" DOUBLE -- 1962,
"n_1963" DOUBLE -- 1963,
"n_1964" DOUBLE -- 1964,
"n_1965" DOUBLE -- 1965,
"n_1966" DOUBLE -- 1966,
"n_1967" DOUBLE -- 1967,
"n_1968" DOUBLE -- 1968,
"n_1969" DOUBLE -- 1969,
"n_1970" DOUBLE -- 1970,
"n_1971" DOUBLE -- 1971,
"n_1972" DOUBLE -- 1972,
"n_1973" DOUBLE -- 1973,
"n_1974" DOUBLE -- 1974,
"n_1975" DOUBLE -- 1975,
"n_1976" DOUBLE -- 1976,
"n_1977" DOUBLE -- 1977,
"n_1978" DOUBLE -- 1978,
"n_1979" DOUBLE -- 1979,
"n_1980" DOUBLE -- 1980,
"n_1981" DOUBLE -- 1981,
"n_1982" DOUBLE -- 1982,
"n_1983" DOUBLE -- 1983,
"n_1984" DOUBLE -- 1984,
"n_1985" DOUBLE -- 1985,
"n_1986" DOUBLE -- 1986,
"n_1987" DOUBLE -- 1987,
"n_1988" DOUBLE -- 1988,
"n_1989" DOUBLE -- 1989,
"n_1990" DOUBLE -- 1990,
"n_1991" DOUBLE -- 1991,
"n_1992" DOUBLE -- 1992,
"n_1993" DOUBLE -- 1993,
"n_1994" DOUBLE -- 1994,
"n_1995" DOUBLE -- 1995,
"n_1996" DOUBLE -- 1996,
"n_1997" DOUBLE -- 1997,
"n_1998" DOUBLE -- 1998,
"n_1999" DOUBLE -- 1999,
"n_2000" DOUBLE -- 2000,
"n_2001" DOUBLE -- 2001,
"n_2002" DOUBLE -- 2002,
"n_2003" DOUBLE -- 2003,
"n_2004" DOUBLE -- 2004,
"n_2005" DOUBLE -- 2005,
"n_2006" DOUBLE -- 2006,
"n_2007" DOUBLE -- 2007,
"n_2008" DOUBLE -- 2008,
"n_2009" DOUBLE -- 2009,
"n_2010" DOUBLE -- 2010,
"n_2011" DOUBLE -- 2011,
"n_2012" DOUBLE -- 2012,
"n_2013" DOUBLE -- 2013,
"n_2014" DOUBLE -- 2014,
"n_2015" DOUBLE -- 2015,
"n_2016" DOUBLE -- 2016,
"n_2017" DOUBLE -- 2017,
"n_2018" DOUBLE -- 2018,
"n_2019" DOUBLE -- 2019,
"n_2020" DOUBLE -- 2020,
"n_2021" DOUBLE -- 2021,
"n_2022" DOUBLE -- 2022
);Anyone who has the link will be able to view this.