Time Series Human Mood Data
@pjsousa.vana_playground
@pjsousa.vana_playground
The dataset consists of structured, time-series psychometric reports measuring positive and negative affect, collected weekly from thousands of participants. Each entry provides quantified emotional states, such as enthusiasm, alertness, distress, or fatigue, aligned to consistent reporting intervals. Over time, this builds a longitudinal record of human mood fluctuations, forming a large-scale resource for analyzing emotional trends and correlations with external events.
CREATE TABLE mind_checks_parquet (
"id" VARCHAR,
"created_at" TIMESTAMP,
"interested" BIGINT,
"distressed" BIGINT,
"excited" BIGINT,
"upset" BIGINT,
"strong" BIGINT,
"guilty" BIGINT,
"scared" BIGINT,
"hostile" BIGINT,
"enthusiastic" BIGINT,
"proud" BIGINT,
"irritable" BIGINT,
"alert" BIGINT,
"ashamed" BIGINT,
"inspired" BIGINT,
"nervous" BIGINT,
"determined" BIGINT,
"attentive" BIGINT,
"jittery" BIGINT,
"active" BIGINT,
"afraid" BIGINT,
"best_thing" VARCHAR,
"worst_thing" VARCHAR,
"location" VARCHAR,
"race_ethnicity" VARCHAR,
"gender_identity" VARCHAR
);
Anyone who has the link will be able to view this.