It seems the read data for Spain (ESP) in 2018 is missing. Some missings too for USA 2006 and VNM 2018.
learningtower::load_student(year = c("2000", "2003", "2006", "2009", "2012", "2015", "2018", "2022")) %>%
group_by(year, country, NAs = is.na(read)) %>%
tally() |>
filter(country %in% c("USA", "ESP", "VNM")) |>
filter(NAs)
year country NAs n
<int> <fct> <lgl> <int>
1 2006 USA TRUE 5611
2 2018 ESP TRUE 35943
3 2018 VNM TRUE 5377
It seems the read data for Spain (ESP) in 2018 is missing. Some missings too for USA 2006 and VNM 2018.
Thanks for the package!