normieren {CMO}R Documentation

Assign percentile ranks using a Normtable

Description

Assigns percentile ranks to a vector (of test results) using a Normtable, based on a different(larger) dataset.

Usage

normieren(x, Normtabelle)

Arguments

x numeric vector to be graded
Normtabelle complex object of class Normtabelle

Details

See Normierung for more details.

Value

A numeric vector with percentile ranks.

Author(s)

Christian Montel

See Also

Normierung and NormSplit

Examples

#mimic some Normtable
Normtabelle <- list()
class(Normtabelle) <- "Normtabelle"
Rohwert <- c(1:10)
PercRank <- c(1:10)*10
roundPercRank <- c(1:10)*10
Normtabelle$HTshort <- data.frame(
   Rohwert=Rohwert,Prozentrang=PercRank,
   gerundeter.Prozentrang=roundPercRank)
newResults <- c(4,8,2)
normieren(newResults,Normtabelle)

[Package CMO version 1.02 Index]