Team: E-Z Coders
Daniel, Darren, Dwayne, Jessica, and Uzma
Overview
Questions
What impact did covid have on any mental health in adults?
Was every state/region affected the same way or were some states affected more than others?
How accurately will our ML predict mental health issues across states/regions based on features?
1
2
3
Primary Data Search
Data Transformation
�
Database Process
MACHINE LEARNING MODEL SELECTION
FEATURE ENGINEERING & SELECTION
Find the Best Performing Model using GridSearchCV
Linear Regression
DecisionTreeRegressor
GradientBoostingRegressor
REGRESSION MODEL TESTING
Model Name | Data Processing | R^2 Score |
Multivariate Linear Regression | X_train, X_test, y_train, y_test = train_test_split(X,y, test_size = .25, random_state = 42) | Testing Score: 0.89 |
Gradient Boosting Regressor | gbr_params = {'n_estimators': 1000, 'max_depth': 3, 'min_samples_split': 5, 'learning_rate': 0.01, 'loss': 'ls'} | Testing Score: 0.95 |
Ridge Regression | Ridge_regressor = GridSearchCV(ridge, parameters, scoring = ‘r2’, cv=5) | Testing Score: 0.49 |
Gradient Boosting Regressor Predictions vs Actual Values
Predictions vs Actual Data
Interactive Tableau Dashboard
Conclusion
Things that We Have Done Differently