new_sat_math_to_old_sat_math: Recode new SAT math section to old SAT math section

Description Usage Arguments Value Examples

Description

Function to recode new SAT math section to old SAT math section. Missing and unmatched values are coded as missing.

Usage

1

Arguments

x

numeric vector of new SAT math section values

Value

integer vector of old SAT math section values

Examples

1
2
3
4
5
6
7
8
9
require(dplyr)

new_sat_vals <- round(sample(200:800, 10), -1)
old_sat_vals <- new_sat_math_to_old_sat_math(new_sat_vals)
new_old_vals <- data.frame(new_sat_vals, old_sat_vals)
print(new_old_vals)

new_old_vals %>%
    mutate(old_sat_vals_piped = new_sat_math_to_old_sat_math(new_sat_vals))

capturelabs/satconcordance documentation built on May 28, 2019, 7:11 a.m.