Skip to contents

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.

Usage

convert.ACT2SAT(ACT.score)

Arguments

ACT.score

ACT score as a number (float or integer). NAs and text (aka as.character()) are converted to integer values via as.integer().

Value

integer of the corresponding SAT score

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