Will convert raw IQ scores from subtests into T or scaled values according to a conversion table

iq_raw2score(x, age, iq_table)

Arguments

x

raw iq score

age

age in decimals

iq_table

table with converions

Value

numeric vector of converted IQ scores

See also

Other iq-functions: iq_table()

Examples

if (FALSE) { t <- iq_table(".iq_table_subtest.tsv", "Vocab", header=TRUE) iq_raw2score(31, 22, t) iq_raw2score(x = c(33, 34, NA, 34), age=c(15.5, 20, 20, NA)) }