val2rank: Converting the values of a vector into their rank

View source: R/val2rank.R

val2rankR Documentation

Converting the values of a vector into their rank

Description

converts the values of a vector into their rank

Usage

val2rank(X, opt)

Arguments

X

: vector to treat

opt

: integer which gives the rule to follow in case of tied ranks (repeated values): if opt = 1, one returns the average rank, if opt = 2, one returns the corresponding rank in the series of the unique values, if opt = 3, return the max rank

Value

R : rank vector

Author(s)

Fabrice Zaoui

Examples

# Definition of the parameters
X <- matrix(rexp(100), 100, 1)
opt <- 3
# Call the function
res <- val2rank(X, opt)


caRamel documentation built on March 18, 2022, 7:23 p.m.