lookup_norms: Look up norm table values

View source: R/lookup_norms.R

lookup_normsR Documentation

Look up norm table values

Description

Transforms raw values to norm values based on a norm table.

Usage

lookup_norms(
  rawscores,
  group = NULL,
  normtable,
  from = "raw",
  to = "T",
  group_label = names(group)
)

Arguments

rawscores

A vector with raw scores.

group

A vector with group affiliations or a list with vectors for multiple group categorizations.

normtable

An excel file name or a data frame containing a norm table.

from

Label of the raw score variable in file.

to

Label of the norm score variable in file.

group_label

Label of the group variable in file or a list with group labels for multiple group categorizations.

Value

A vector with norm values.

Examples

normtable <- data.frame(
  age = rep(c(6, 8, 6, 8), each = 11),
  gender = rep(c("m", "w"), each = 22),
  raw =  rep(0:10, 4),
  T = rep(c(40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60,
            37, 39, 41, 43, 45, 47, 49, 51, 53, 55, 57), 2) + rep(c(0,5), each = 22)
)
rawscores <- c(5,5,3,1)
group_age <- c("6", "8", "6", "8")
group_gender <- c("m", "m", "w", "w")

lookup_norms(rawscores, group = list(age = group_age, gender = group_gender), normtable)

## When group values are not specified exactly, raw scores can be ambiguous:
lookup_norms(rawscores, group = list(gender = group_gender), normtable = normtable)

lookup_norms(rawscores, normtable = normtable)

jazznbass/scaledic documentation built on July 19, 2023, 12:50 a.m.