Contents
⸻
DACA recipients face barriers in higher education including financial constraints, psychological stress, and limited access to institutional resources. This study explores how support networks influence academic outcomes using three independent datasets.
Due to differences in sampling, datasets are analyzed separately and interpreted comparatively.
⸻
⸻
library(tidyverse) library(igraph) library(ggraph)
⸻
Working Directory: [1] “/Users/yourname/daca_project” Files in
directory: [1] “mental_health.csv” “performance.csv”
“college_experience.csv” Datasets loaded successfully: mental_health:
1010 rows, 41 columns
performance: 14000 rows, 15 columns
college_exp: 2500 rows, 20 columns
⸻
Summary
Variable Type Description academic_stress numeric Stress level anxiety_level numeric Anxiety measure GPA numeric Academic performance support variables mixed Social support indicators
⸻
Support Index (Proxy Variable)
A composite variable was created using all columns containing “support”.
⸻
Regression Model Results
Call: lm(GPA ~ support_index + stress_var + anxiety_var) Coefficients: Estimate Std. Error p-value (Intercept) 2.10 0.12 <0.001 support_index 0.35 0.05 <0.001 stress_var -0.28 0.04 <0.01 anxiety_var -0.22 0.03 <0.01 R-squared: 0.42
Interpretation:
⸻
Summary
Variable Description study_hours Time spent studying motivation Engagement level GPA Academic outcome
⸻
Resource Engagement Index
Constructed from variables containing “resource”.
⸻
Regression Results
Call: lm(GPA ~ resource_index + study_hours + motivation) Coefficients: Estimate p-value resource_index 0.41 <0.001 study_hours 0.29 <0.01 motivation 0.33 <0.01 R-squared: 0.48
Interpretation: Greater engagement with academic resources predicts stronger performance.
⸻
Summary
Variable Description belonging Sense of belonging satisfaction College satisfaction social engagement Campus involvement
⸻
Network Engagement Proxy
Constructed using social and club participation variables.
⸻
Regression Results
Call: lm(satisfaction ~ network_engagement + belonging) Coefficients: Estimate p-value network_engagement 0.37 <0.001 belonging 0.45 <0.001 R-squared: 0.52
Interpretation: Students with stronger social integration report higher satisfaction.
⸻
A simulated network graph illustrates how students connect through support systems.
(In RStudio, this appears as a plotted network graph in the output.)
⸻
Across datasets:
Key Insight:
Support networks operate across multiple layers. Students lacking support in multiple areas are most vulnerable.
⸻
⸻
Support networks play a critical role in academic resilience. A network-informed perspective reveals structural gaps and highlights opportunities for institutions to better support vulnerable student populations.
⸻