This project investigates factors influencing college graduation rates using the College dataset from the ISLR R package. It was completed as part of the STA141A: Fundamentals of Statistical Data Science course at UC Davis.
We applied both supervised learning (linear regression) and unsupervised learning (hierarchical clustering and principal component analysis) techniques to explore which attributes most significantly impact graduation rates.
- Which attribute has the most impact on the graduation rate? How does it impact it?
- Is a linear regression model a good fit for the data?
- Do linear regression and unsupervised learning lead to consistent insights?
You will need:
- R (version ≥ 4.0 recommended)
- R packages:
ISLRcorrplot
Install required packages in R:
install.packages("ISLR")
install.packages("corrplot")