Compare commits

...

10 Commits

Author SHA1 Message Date
Drew Giffin 35b4a84914 Merge branch 'development' 2025-10-24 13:57:24 -04:00
Drew Giffin c2fc8478cf Merge branch 'bugfix/add-requirements' into development 2025-10-24 13:57:10 -04:00
Drew Giffin 237031fa89 Added requirments file for venv use 2025-10-24 13:56:46 -04:00
Drew Giffin 84a28823d9 Merge branch 'development' 2025-10-22 11:08:31 -04:00
Drew Giffin ebbd3b2da6 Merge branch 'feature/report' into development 2025-10-22 11:07:40 -04:00
Drew Giffin 3cf2d55a80 Added references section 2025-10-22 11:07:25 -04:00
Drew Giffin 438ed347d6 Added how to run section 2025-10-22 11:04:54 -04:00
Drew Giffin 3b3918a0e1 Added conclusion section 2025-10-22 10:46:54 -04:00
Drew Giffin 6aeda55577 Changed heading to match project 2025-10-22 09:55:29 -04:00
Drew Giffin 201523cb34 Added text for results 2025-10-22 09:53:56 -04:00
3 changed files with 62 additions and 3 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

+62 -3
View File
@@ -1,4 +1,4 @@
# Student Habits and Stress Prediction Analysis # Student Stress Level Classifier
A machine learning project that examines the habits of students with the goal of gaining insight into how their daily routines may affect their stress levels. Habits such as studying, extracurricular involvement, sleep, socialization, and physical activity, as well as performance indicators like GPA, are analyzed to understand their correlation with stress. A machine learning project that examines the habits of students with the goal of gaining insight into how their daily routines may affect their stress levels. Habits such as studying, extracurricular involvement, sleep, socialization, and physical activity, as well as performance indicators like GPA, are analyzed to understand their correlation with stress.
@@ -66,6 +66,65 @@ This model was made using **logistic regression**, it works well in this situati
## Results ## Results
![Accuracy](images/accuracy.png) To ensure better results, the model was trained and evaluated using 1,000 different random seeds for splitting the training and test data. Across all samples, the model scored an accuracy of **82.6%**, indicating strong performance.
As shown in the confusion matrix, each classification yielded slightly different results. The **high stress** students were the most identifiable, with **precision, recall, and F1-scores all above 86%**. The **moderate stress** group was the most challenging to predict, though still produced reasonable scores. This is somewhat expected, as students in the moderate category often displayed activity patterns that blended characteristics of both high and low stress groups, making them more prone to being categorized as on the extremes.
Also, because stress is a subjective measurement, some inconsistency in labeling is expected. Students who appear to belong to one stress category based on their activities might self-report differently due to personal coping mechanisms or varying perceptions of what "stress" means to them. This subjectivity likely contributes to occasional misclassifications, even when the model's performance is otherwise strong.
![Classification Report](images/classification_report.png) ![Classification Report](images/classification_report.png)
![Confusion Matrix](images/confusion_matrix.png) ![Confusion Matrix](images/confusion_matrix.png)
---
## Conclusion
Overall, the current state of the model is fairly reliable in predicting high-stress students. The main goal was to identify these students and provide insight into lifestyle adjustments that could help reduce stress without compromising academic performance. For students with GPAs near 4.0, this balance appears more difficult to achieve. Their elevated stress levels are often linked to the amount of time spent studying — the same factor driving their strong performance. For these students, ensuring adequate sleep (at least six hours per night) may be the most effective way to manage stress.
Physical activity showed a small connection to lower stress levels, but this relationship was not consistent across all students. In fact, increased time spent exercising may slightly reduce GPA, suggesting that excessive physical activity could detract from study time.
The process that produced these results was intentionally straightforward: a classification problem addressed using logistic regression to predict stress levels. Future improvements could include experimenting with more complex models such as random forests or gradient boosting. Additionally, only a single training and test split was used in this study. Incorporating cross-validation would likely provide more stable and trustworthy performance estimates by reducing the variance introduced by a single random split.
---
## How to Run
1. Clone the repository
`git clone https://github.com/drewgiffin/student-stress-level-classifier`
`cd student-stress-level-classifier`
2. Create a virtual enviornment (recommended), and activate it
`python -m venv venv`
- Windows
`venv\Scripts\activate`
- macOS / Linux
`source venv/bin/activate`
3. Install dependencies
`pip install -r requirements.txt`
4. Run the program
`python main.py`
### Notes:
Right now, the program only outputs the average accuracy after running the 1,000 random train/test splits.
If you want to visualize the results yourself:
1. Remove the model training loop that stores the accuracy scores.
2. Uncomment the `draw_` methods in the main method.
This allows you to view the analysis graphs instead of just the aggregated accuracy results.
---
## References
- [Study Habits and Activities of Students Dataset - Kaggle](https://www.kaggle.com/datasets/afnansaifafnan/study-habits-and-activities-of-students)
BIN
View File
Binary file not shown.