Analyzing Screen Time
Cumulative and individual Screen Time of apps
@kaggle.ruchi798_analyzing_screen_time
Cumulative and individual Screen Time of apps
@kaggle.ruchi798_analyzing_screen_time
This dataset contains the usage statistics of various apps on a phone.
Inspiration:
CREATE TABLE screentime_app_details (
"date" TIMESTAMP,
"usage" BIGINT,
"notifications" BIGINT,
"times_opened" BIGINT,
"app" VARCHAR
);CREATE TABLE screentime_app_ranking (
"date" TIMESTAMP,
"rank_1" VARCHAR,
"rank_2" VARCHAR,
"rank_3" VARCHAR
);CREATE TABLE screentime_overall_usage (
"date" TIMESTAMP,
"total_usage" BIGINT,
"notifications" BIGINT,
"unlocks" BIGINT
);Anyone who has the link will be able to view this.