Description Usage Arguments Value Examples
Function to recode ACT English/Writing test to new SAT writing and language section. Missing and unmatched values are coded as missing.
1 |
x |
numeric vector of ACT Enlish/Writing test values |
integer vector of new SAT writing and language section values
1 2 3 4 5 6 7 8 9 | require(dplyr)
act_vals <- sample(11:36, 10)
new_sat_vals <- act_english_to_new_sat_writing(act_vals)
act_new_vals <- data.frame(act_vals, new_sat_vals)
print(act_new_vals)
act_new_vals %>%
mutate(new_sat_vals_piped = act_english_to_new_sat_writing(act_vals))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.