Fitbit Data
Daily activity and sleep activity from Fitbit tracker
@kaggle.shivideveshwar_fitbit_data_analysis
Daily activity and sleep activity from Fitbit tracker
@kaggle.shivideveshwar_fitbit_data_analysis
The original data set has been taken from https://www.kaggle.com/arashnic/fitbit from Möbius. It contains personal fitness tracker from thirty fitbit users. Thirty eligible Fitbit users consented to the submission of personal tracker data, including minute-level output for physical activity, heart rate, and sleep monitoring. It includes information about daily activity, steps, and heart rate that can be used to explore users’ habits.
CREATE TABLE activity_nr (
"id" BIGINT,
"activityday" TIMESTAMP,
"totaldistance" BIGINT,
"totalactivehours" DOUBLE,
"sedentaryhours" DOUBLE
);CREATE TABLE activity_summary (
"id" BIGINT,
"activityday" TIMESTAMP,
"totaldistance" BIGINT,
"totalactivehours" DOUBLE,
"sedentaryhours" DOUBLE
);CREATE TABLE dailyactivity_merged (
"id" BIGINT,
"activityday" TIMESTAMP,
"calories" BIGINT,
"sedentaryminutes" BIGINT,
"lightlyactiveminutes" BIGINT,
"fairlyactiveminutes" BIGINT,
"veryactiveminutes" BIGINT,
"sedentaryactivedistance" BIGINT,
"lightactivedistance" BIGINT,
"moderatelyactivedistance" BIGINT,
"veryactivedistance" BIGINT,
"steptotal" BIGINT
);CREATE TABLE sleep_and_activity (
"id" BIGINT,
"activityday" TIMESTAMP,
"average_sleep_hours" DOUBLE,
"average_time_in_bed_hours" DOUBLE,
"average_calories" BIGINT,
"average_steps" BIGINT,
"totaldistance" BIGINT
);CREATE TABLE sleep_and_activity_nr (
"id" BIGINT,
"activityday" TIMESTAMP,
"average_sleep_hours" DOUBLE,
"average_time_in_bed_hours" DOUBLE,
"average_calories" BIGINT,
"average_steps" BIGINT,
"totaldistance" BIGINT
);CREATE TABLE sleepday_merged (
"id" BIGINT,
"sleepday" TIMESTAMP,
"time" VARCHAR,
"totalsleeprecords" BIGINT,
"totalminutesasleep" BIGINT,
"totaltimeinbed" BIGINT
);Anyone who has the link will be able to view this.