Convert a user provided ACT score to the corresponding SAT score. This function uses the Princeton Review conversion table. Because a range of SAT values equal a single ACT score, the mean of the SAT scores provided in The Princeton Review's ACT to SAT Score Conversion Chart is used for this conversion. Please see the the ACT.2.SAT dataset for details.
Arguments
- ACT.score
ACT score as a number (float or integer).
NA
s and text (akaas.character()
) are converted to integer values viaas.integer()
.
Author
Emilio Xavier Esposito emilio.esposito@gmail.com (https://github.com/emilioxavier)
Examples
ACT.score <- c(25, "34", NA, 25.25, "NA", 50)
convert.ACT2SAT(ACT.score)
#> [1] 1220 1540 NA 1220 NA NA
# [1] 1215 1535 NA 1215 NA NA