Social Media Usage And Emotional Well-Being
Explore the connection between social media usage patterns and emotional...
@kaggle.emirhanai_social_media_usage_and_emotional_well_being
Explore the connection between social media usage patterns and emotional...
@kaggle.emirhanai_social_media_usage_and_emotional_well_being
CREATE TABLE test (
"user_id" BIGINT,
"age" VARCHAR,
"gender" VARCHAR,
"platform" VARCHAR,
"daily_usage_time_minutes" BIGINT,
"posts_per_day" BIGINT,
"likes_received_per_day" BIGINT,
"comments_received_per_day" BIGINT,
"messages_sent_per_day" BIGINT,
"dominant_emotion" VARCHAR
);
CREATE TABLE train (
"user_id" VARCHAR,
"age" VARCHAR,
"gender" VARCHAR,
"platform" VARCHAR,
"daily_usage_time_minutes" DOUBLE,
"posts_per_day" DOUBLE,
"likes_received_per_day" DOUBLE,
"comments_received_per_day" DOUBLE,
"messages_sent_per_day" DOUBLE,
"dominant_emotion" VARCHAR
);
Anyone who has the link will be able to view this.