raw_score: From Standard Scores to Raw Scores

View source: R/scoring.R

raw_scoreR Documentation

From Standard Scores to Raw Scores

Description

Identify the raw scores corresponding to a vector of standard scores.

Usage

raw_score(q, m, s,
    scale = c("z","t","nce","iq","wss","stanine","sten"),
    integer = FALSE, out.names = q)

Arguments

q

Vector of standard scores.

m

Mean of observed data.

s

Standard deviation of the population. If NULL, the mean of x will be used.

scale

Reference scale of the population. If NULL, the standard deviation of x will be used.

integer

Logical. If TRUE, data in output will bet rounded to nearest integer.

out.names

Names for the elements in the output vector (use NULL to exclude names).

Details

The arguments m and s are mandatory.

See Also

std_score

Examples

std <- c(37, 41, 43, 43, 46, 48, 56, 59, 61, 67)
raw_score(std, m=30, s=5.4, scale="T")

DavideMassidda/testing documentation built on Oct. 12, 2023, 4:32 p.m.