In 2022, the National Assessment of Educational Progress (NAEP) mathematics assessment was administered to representative samples of fourth- and eighth-grade students in the nation, states, the District of Columbia, Puerto Rico, Department of Defense schools, and 26 participating large urban districts. The mathematics assessment at grade 12 was last administered nationally in 2019. The assessments measured students’ knowledge and skills in mathematics and their ability to solve problems in mathematical and real-world contexts.
Let’s look at 8th grade
In 2022, twenty-six percent of eighth-grade students performed at or above the NAEP Proficient level on the mathematics assessment, which was 7 percentage points lower compared to 2019 and was 11 percentage points higher than the percentage in 1990, the first assessment year. Sixty-two percent of eighth-grade students performed at or above the NAEP Basic level in mathematics, which was 7 percentage points lower than in 2019 and 10 percentage points higher than in 1990.
Setup Analysis
## LOAD PACKAGESlibrary(tidyverse)library(readxl)## READ IN DATA ####Gr8 <-read_excel("NAEP_Gr8_Math.xlsx")# Make tibbleGr8 <-as_tibble(Gr8)# Pivot longer, first selectGr8_long <-select(Gr8, Year, Avg_All, Avg_Asian, Avg_Black, Avg_Hispanic, Avg_White)# PivotGr8_long <- Gr8_long |>pivot_longer(!Year,names_to ="Race_Ethnicity",values_to ="Average" )
# Create plotSDMath8.plot <-ggplot(Gr8) +geom_line(aes(Year, Diff_sd_Asian), color ="blue") +geom_line(aes(Year, Diff_sd_White), color ="hot pink") +geom_line(aes(Year, Diff_sd_All), color ="red") +geom_line(aes(Year, Diff_sd_Hispanic), color ="brown") +geom_line(aes(Year, Diff_sd_Black), color ="black") +labs(x ="Year",y ="Difference in Standard Deviation") +labs(title ="Main NAEP National Average Math Score Grade 8", subtitle ="Difference in average scores (in SD) since 2003") +scale_x_continuous(limits =c(2003, 2028)) +scale_y_continuous(limits =c(-1, 1)) +annotate(geom ="label", x =2025.5, y =0.667,label ="Asian average up 0.31" ) +annotate(geom ="label", x =2025.5, y =0.179,label ="White average down 0.10" ) +annotate(geom ="label", x =2025.5, y =-0.103,label ="Overall average down 0.10" ) +annotate(geom ="label", x =2025.5, y =-0.436,label ="Hispanic average up 0.09" ) +annotate(geom ="label", x =2025.5, y =-0.641,label ="Black average up 0.08" )
Change in SD by Race (2003 - 2022)
Asian/White Gap
Looking at 8th grade math on NAEP:
Did “the gap” grow between 2003 & 2019?
Scale scores
“effect size” (standard deviation units)
% Basic
% Proficient
Percentile rank
Scale scores
Gains in NAEP average 8th grade math 2003 - 2019
Year
Asian
White
Difference
2003
291
288
3
2019
310
292
18
Gain
19
4
15
A/W Gap in average scale scores grew by 15 points from 2003 to 2019
Compare to all students
In 2003, mean = 278 & sd = 36 In 2019, mean = 282 & sd = 40
Year
Asian
White
Difference
2003
0.36
0.28
0.08
2019
0.70
0.25
0.45
Difference
0.34
-0.03
0.37
Percent Basic
Gap analysis of 8th grade NAEP math
Percent at or above basic
Year
Asian
White
Difference
2003
78%
80%
-2
2019
86%
80%
6
A/W Gap in % above basic grew by 8 percentage points from 2003 to 2019
Percent Proficient
Gap analysis of 8th grade NAEP math
Percent at or above proficient
Year
Asian
White
Difference
2003
43%
37%
6
2019
62%
44%
18
A/W Gap in % above proficient grew by 12 percentage points from 2003 to 2019
% Proficient post pandemic
Percent at or above proficient
Year
Asian
White
Difference
2019
62%
44%
18
2022
56%
35%
21
A/W Gap in % above proficient grew by 3 percentage points from 2019 to 2022