World Economic Data
Corruption, Tourism, Unemployment and Cost of Living all around the World.
@kaggle.madhurpant_world_economic_data
Corruption, Tourism, Unemployment and Cost of Living all around the World.
@kaggle.madhurpant_world_economic_data
annual_incomecorruption_indexcost_indexmonthly_incomepurchasing_powergdp_per_capitatourism_in_millionsreceipts_in_billionsreceipts_per_touristpercentage_of_gdpunemployment_rateCREATE TABLE corruption (
"country" VARCHAR,
"annual_income" BIGINT,
"corruption_index" BIGINT
);CREATE TABLE cost_of_living (
"country" VARCHAR,
"cost_index" DOUBLE,
"monthly_income" BIGINT,
"purchasing_power_index" DOUBLE
);CREATE TABLE richest_countries (
"country" VARCHAR,
"gdp_per_capita" BIGINT
);CREATE TABLE tourism (
"country" VARCHAR,
"tourists_in_millions" DOUBLE,
"receipts_in_billions" DOUBLE,
"receipts_per_tourist" BIGINT,
"percentage_of_gdp" DOUBLE
);CREATE TABLE unemployment (
"country" VARCHAR,
"unemployment_rate" DOUBLE
);Anyone who has the link will be able to view this.