Mean test score above or at proficient grouped by regions in the United States
Research Question:
How do high school students’ subgroup makeup (i.e., Race/ethnicity, Male vs. Female, economically disadvantaged, Limited English, Migrant status, Disability status, and Homelessness) and mean test scores in math and reading differ among states/regions?


ggplot(df_pivot, aes(x = mean_pct,
y = fct_reorder(Subgroup, mean_pct),
fill = Region,
alpha = .7)) +
guides(alpha = "none") +
geom_density_ridges(rel_min_height = 0.005) +
theme_minimal() +
labs(title = 'Mean percentage of students that scored at or above proficient in Math and Reading',
x = 'Mean percent proficient',
y = 'Group')