Convert a user provided SAT score to the corresponding ACT score. This function uses the Princeton Review conversion table. Because a range of SAT values equal a single ACT score, a range of SAT scores will return the same ACT score. Please see The Princeton Review's ACT to SAT Score Conversion Chart or the SAT.2.ACT dataset for details.
Author
Emilio Xavier Esposito emilio.esposito@gmail.com (https://github.com/emilioxavier)
Examples
SAT.score <- c(1326, "1444", NA, 1444.44, "NA", 3600)
convert.SAT2ACT(SAT.score)
#> [1] 28 31 NA 31 NA NA
# [1] 28 31 NA 31 NA NA