Music & Mental Health Survey Results
Survey results on music taste and self-reported mental health
@kaggle.catherinerasgaitis_mxmh_survey_results
Survey results on music taste and self-reported mental health
@kaggle.catherinerasgaitis_mxmh_survey_results
Music therapy, or MT, is the use of music to improve an individual's stress, mood, and overall mental health. MT is also recognized as an evidence-based practice, using music as a catalyst for "happy" hormones such as oxytocin.
However, MT employs a wide range of different genres, varying from one organization to the next.
The MxMH dataset aims to identify what, if any, correlations exist between an individual's music taste and their self-reported mental health. Ideally, these findings could contribute to a more informed application of MT or simply provide interesting sights about the mind.
Respondents answer generic questions focused on musical background and listening habits.
Respondents rank how often they listen to 16 music genres, where they can select:
Respondents rank Anxiety, Depression, Insomnia, and OCD on a scale of 0 to 10, where:
Additional data that does not fall in these blocks may provide useful background information. See column descriptors.
Data collection was managed by @catherinerasgaitis via a Google Form. Respondents were not restricted by age or location.
The form was posted in various Reddit forums, Discord servers, and social media platforms. Posters and "business cards" were also used to advertise the form in libraries, parks, and other public locations.
The form was relatively brief so that respondents would be more likely finish the survey. "Harder" questions (such as BPM) were left optional for the same reason.
View the EDA notebook.
CREATE TABLE mxmh_survey_results (
  "timestamp" TIMESTAMP,
  "age" DOUBLE,
  "primary_streaming_service" VARCHAR,
  "hours_per_day" DOUBLE,
  "while_working" VARCHAR,
  "instrumentalist" VARCHAR,
  "composer" VARCHAR,
  "fav_genre" VARCHAR,
  "exploratory" VARCHAR,
  "foreign_languages" VARCHAR,
  "bpm" DOUBLE,
  "frequency_classical" VARCHAR  -- Frequency [Classical],
  "frequency_country" VARCHAR  -- Frequency [Country],
  "frequency_edm" VARCHAR  -- Frequency [EDM],
  "frequency_folk" VARCHAR  -- Frequency [Folk],
  "frequency_gospel" VARCHAR  -- Frequency [Gospel],
  "frequency_hip_hop" VARCHAR  -- Frequency [Hip Hop],
  "frequency_jazz" VARCHAR  -- Frequency [Jazz],
  "frequency_k_pop" VARCHAR  -- Frequency [K Pop],
  "frequency_latin" VARCHAR  -- Frequency [Latin],
  "frequency_lofi" VARCHAR  -- Frequency [Lofi],
  "frequency_metal" VARCHAR  -- Frequency [Metal],
  "frequency_pop" VARCHAR  -- Frequency [Pop],
  "frequency_r_b" VARCHAR  -- Frequency [R\u0026B],
  "frequency_rap" VARCHAR  -- Frequency [Rap],
  "frequency_rock" VARCHAR  -- Frequency [Rock],
  "frequency_video_game_music" VARCHAR  -- Frequency [Video Game Music],
  "anxiety" DOUBLE,
  "depression" DOUBLE,
  "insomnia" DOUBLE,
  "ocd" DOUBLE,
  "music_effects" VARCHAR,
  "permissions" VARCHAR
);Anyone who has the link will be able to view this.