Analyzing-Students-Mental-Health
Uncovering Mental Health Trends in International Students with PostgreSQL πβ¨
table of content
Table of Contents
project overview
This project explores the mental health impact on international students using PostgreSQL. Based on a 2018 study from a Japanese university, which found higher mental health risks among international students, we analyze student data to identify similar patterns. Key factors include social connectedness, acculturative stress, and the length of stay. Using SQL queries, we examine correlations to understand how studying abroad affects mental well-being.
data sources
Analyzing international studentsβ mental health using insights from students.csv
- Excel -> data cleaning
- sql-server -> data analysis
data cleaning
- Load the Data
- Handle Missing Values
Exploring Mental Health Challenges
- Do international students have a higher risk of mental health difficulties compared to local students?
- Are students who report higher acculturative stress more likely to experience depression?
- Do short-term exchange students face higher mental health challenges compared to long-term international students?
data analysis
SELECT stay,
COUNT(*) AS count_int,
ROUND(AVG(todep), 2) AS average_phq,
ROUND(AVG(tosc), 2) AS average_scs,
ROUND(AVG(toas), 2) AS average_as
FROM students
WHERE inter_dom = 'Inter'
GROUP BY stay
ORDER BY stay DESC;
results
Trend in Mental Health Over Stay Duration
Higher PHQ (Patient Health Questionnaire) scores for short-term students indicate that they experience more depression, likely due to difficulties in adaptation, social isolation, and cultural stress.
lower PHQ (Patient Health Questionnaire) scores for long-term students suggest that extended stays help them adjust, build stronger support networks, and improve their mental well-being.
### recommendations
- Support for Short-Term Students
- Encourage participation in student clubs
- support providing pre-arrival orientation programs and early intervention counseling to ease their transition.
references
DataCamp. (n.d.). SQL for Data analysis . Retrieved from https://www.datacamp.com
PostgreSQL for Data Analysis