World Time Use, Work Hours And GDP
Country statistics on time use by gender, work hours and GDP
@kaggle.felipechapa_time_use_employment_and_gdp_per_country
Country statistics on time use by gender, work hours and GDP
@kaggle.felipechapa_time_use_employment_and_gdp_per_country
Time use can vary greatly by country and between genders, be it by it's location, cultural differences, or economic situation. The data provided is by no means exhaustive but contains some interesting information on leisure time by gender, as well as historic data (1950-2017) on Avg. work hours and GDP in different countries and continents.
Datasets from two sources are provided:
*RGDPO: Output-side real GDP at chained PPPs, to compare relative productive capacity across countries and over time.
Example: Productive capacity of China today compared to the US at some point in the past.
If you'd like, you can see an exploration of the data on my notebook: Data exploration
These databases provide additional indicators and may be of interest:
It is an interesting, easy to handle dataset which provides a great opportunity for interesting visuals and identifying relationships or trends between indicators.
Some questions to answer:
CREATE TABLE avg_hours_worked_1950_2017 (
"year" BIGINT,
"regioncode" VARCHAR,
"personsengaged" DOUBLE,
"avghoursworked" DOUBLE
);CREATE TABLE time_use_oecd (
"country_code" VARCHAR,
"country" VARCHAR,
"desc" VARCHAR,
"description" VARCHAR,
"sex" VARCHAR,
"age" VARCHAR,
"minutes_per_day" DOUBLE
);CREATE TABLE yearly_rgdpo_1950_2017 (
"yearcode" BIGINT,
"regioncode" VARCHAR,
"pop" DOUBLE,
"rgdpo" DOUBLE
);Anyone who has the link will be able to view this.