World Bank's Income Classification
@owid.income_groups_aggregations
@owid.income_groups_aggregations
Every year, the World Bank Group classifies the world’s economies into four income groups: low, lower-middle, upper-middle, and high. These classifications, updated each year on July 1, are based on the previous year’s Gross National Income (GNI) per capita, expressed in U.S. dollars using the Atlas method.
CREATE TABLE owid_income_groups_aggregations (
"country" VARCHAR,
"year" INTEGER,
"classification_low_income_countries_count" INTEGER,
"classification_lower_middle_income_countries_count" INTEGER,
"classification_upper_middle_income_countries_count" INTEGER,
"classification_high_income_countries_count" INTEGER,
"classification_low_income_countries_pop" UINTEGER,
"classification_lower_middle_income_countries_pop" UINTEGER,
"classification_upper_middle_income_countries_pop" UINTEGER,
"classification_high_income_countries_pop" UINTEGER,
"classification_missing_pop" INTEGER
);Anyone who has the link will be able to view this.