Malnutrition Across The Globe
Data of countries from 1983-2019
@kaggle.ruchi798_malnutrition_across_the_globe
Data of countries from 1983-2019
@kaggle.ruchi798_malnutrition_across_the_globe
Malnutrition continues to be the reason for making children much more vulnerable to diseases and death.
There are 4 broad types of malnutrition: wasting, stunting, underweight and overweight.
CREATE TABLE country_wise_average (
"country" VARCHAR,
"income_classification" DOUBLE,
"severe_wasting" DOUBLE,
"wasting" DOUBLE,
"overweight" DOUBLE,
"stunting" DOUBLE,
"underweight" DOUBLE,
"u5_population_000s" DOUBLE -- U5 Population (\u0027000s)
);CREATE TABLE malnutrition_estimates (
"unnamed_0" BIGINT -- Unnamed: 0,
"iso_code" VARCHAR,
"country" VARCHAR,
"survey_year" VARCHAR,
"year" BIGINT,
"income_classification" BIGINT,
"ldc" DOUBLE,
"lifd" DOUBLE,
"lldc_or_sid2" DOUBLE,
"survey_sample_n" VARCHAR -- Survey Sample (N),
"severe_wasting" DOUBLE,
"wasting" DOUBLE,
"overweight" DOUBLE,
"stunting" DOUBLE,
"underweight" DOUBLE,
"notes" VARCHAR,
"report_author" VARCHAR,
"source" VARCHAR,
"short_source" VARCHAR,
"u5_population_000s" DOUBLE -- U5 Population (\u0027000s)
);Anyone who has the link will be able to view this.