European Time Use
Time spent on the main activity by sex and nationality
@kaggle.yuchendai_european_time_use
Time spent on the main activity by sex and nationality
@kaggle.yuchendai_european_time_use
How much time a person spent on one task usually indicates how much that person values this specific task. This dataset compares the time spent doing specific daily tasks (across gender and nationalities in European countries and might reveal interesting facts about customs and cultural differences.
This dataset contains useful information about time spent on daily tasks including paid work, household and family care, etc. The numbers in minutes are calculated by averaging survey responses from the year 2010, and the dataset was last updated in 2018.
This dataset is from the website "EuroStat" https://ec.europa.eu/eurostat
You can find more information about this particular dataset here:
http://appsso.eurostat.ec.europa.eu/nui/show.do?dataset=tus_00week&lang=en
Would love to find patterns of people's behavior across gender and nationality!
CREATE TABLE timeuse (
"sex" VARCHAR,
"geo_acl00" VARCHAR,
"total" VARCHAR,
"personal_care" VARCHAR,
"sleep" VARCHAR,
"eating" VARCHAR,
"other_and_or_unspecified_personal_care" VARCHAR,
"employment_related_activities_and_travel_as_part_of_du_e120f75a" VARCHAR -- Employment, Related Activities And Travel As Part Of/during Main And Second Job,
"main_and_second_job_and_related_travel" VARCHAR,
"activities_related_to_employment_and_unspecified_employment" VARCHAR,
"study" VARCHAR,
"school_and_university_except_homework" VARCHAR,
"homework" VARCHAR,
"free_time_study" VARCHAR,
"household_and_family_care" VARCHAR,
"food_management_except_dish_washing" VARCHAR,
"dish_washing" VARCHAR,
"cleaning_dwelling" VARCHAR,
"household_upkeep_except_cleaning_dwelling" VARCHAR,
"laundry" VARCHAR,
"ironing" VARCHAR,
"handicraft_and_producing_textiles_and_other_care_for_textiles" VARCHAR,
"gardening_other_pet_care" VARCHAR -- Gardening; Other Pet Care,
"tending_domestic_animals" VARCHAR,
"caring_for_pets" VARCHAR,
"walking_the_dog" VARCHAR,
"construction_and_repairs" VARCHAR,
"shopping_and_services" VARCHAR,
"childcare_except_teaching_reading_and_talking" VARCHAR -- Childcare, Except Teaching, Reading And Talking,
"teaching_reading_and_talking_with_child" VARCHAR -- Teaching, Reading And Talking With Child,
"household_management_and_help_family_member" VARCHAR,
"leisure_social_and_associative_life" VARCHAR -- Leisure, Social And Associative Life,
"organisational_work" VARCHAR,
"informal_help_to_other_households" VARCHAR,
"participatory_activities" VARCHAR,
"visiting_and_feasts" VARCHAR,
"other_social_life" VARCHAR,
"entertainment_and_culture" VARCHAR,
"resting" VARCHAR,
"walking_and_hiking" VARCHAR,
"sports_and_outdoor_activities_except_walking_and_hiking" VARCHAR,
"computer_games" VARCHAR,
"computing" VARCHAR,
"hobbies_and_games_except_computing_and_computer_games" VARCHAR,
"reading_books" VARCHAR,
"reading_except_books" VARCHAR -- Reading, Except Books,
"tv_and_video" VARCHAR,
"radio_and_music" VARCHAR,
"unspecified_leisure" VARCHAR,
"travel_except_travel_related_to_jobs" VARCHAR,
"travel_to_from_work" VARCHAR,
"travel_related_to_study" VARCHAR,
"travel_related_to_shopping_and_services" VARCHAR,
"transporting_a_child" VARCHAR,
"travel_related_to_other_household_purposes" VARCHAR,
"travel_related_to_leisure_social_and_associative_life" VARCHAR -- Travel Related To Leisure, Social And Associative Life,
"unspecified_travel" VARCHAR,
"unspecified_time_use" VARCHAR
);Anyone who has the link will be able to view this.