Baselight

World Economic Data

Corruption, Tourism, Unemployment and Cost of Living all around the World.

@kaggle.madhurpant_world_economic_data

Loading...
Loading...

About this Dataset

World Economic Data

1) corruption.csv:

  • annual_income
  • corruption_index

2) cost of living.csv:

  • cost_index
  • monthly_income
  • purchasing_power

3) richest_countries.csv:

  • gdp_per_capita

4) tourism.csv:

  • tourism_in_millions
  • receipts_in_billions
  • receipts_per_tourist
  • percentage_of_gdp

5) unemployment.csv:

  • unemployment_rate

Tables

Corruption

@kaggle.madhurpant_world_economic_data.corruption
  • 5 kB
  • 110 rows
  • 3 columns
Loading...
CREATE TABLE corruption (
  "country" VARCHAR,
  "annual_income" BIGINT,
  "corruption_index" BIGINT
);

Cost Of Living

@kaggle.madhurpant_world_economic_data.cost_of_living
  • 6.5 kB
  • 107 rows
  • 4 columns
Loading...
CREATE TABLE cost_of_living (
  "country" VARCHAR,
  "cost_index" DOUBLE,
  "monthly_income" BIGINT,
  "purchasing_power_index" DOUBLE
);

Richest Countries

@kaggle.madhurpant_world_economic_data.richest_countries
  • 3.02 kB
  • 50 rows
  • 2 columns
Loading...
CREATE TABLE richest_countries (
  "country" VARCHAR,
  "gdp_per_capita" BIGINT
);

Tourism

@kaggle.madhurpant_world_economic_data.tourism
  • 5.89 kB
  • 41 rows
  • 5 columns
Loading...
CREATE TABLE tourism (
  "country" VARCHAR,
  "tourists_in_millions" DOUBLE,
  "receipts_in_billions" DOUBLE,
  "receipts_per_tourist" BIGINT,
  "percentage_of_gdp" DOUBLE
);

Unemployment

@kaggle.madhurpant_world_economic_data.unemployment
  • 3.25 kB
  • 64 rows
  • 2 columns
Loading...
CREATE TABLE unemployment (
  "country" VARCHAR,
  "unemployment_rate" DOUBLE
);

Share link

Anyone who has the link will be able to view this.