utilsRankingMatrix | R Documentation |
R interface to perform the rank transformation on the columns of the input data frame. Ties are resolved by fractional ranking.
utilsRankingMatrix(data_matrix)
data_matrix |
A DataFrame. |
A DataFrame containing the ranking matrix.
Balázs R. Sziklai sziklai.balazs@krtk.hu, Linus Olsson linusmeol@gmail.com
df <- data.frame(
A=c(32, 52, 44, 44, 47),
B=c(73, 75, 65, 76, 70),
C=c(60, 59, 57, 55, 60),
D=c(35, 24, 44, 83, 47),
E=c(41, 52, 46, 50, 65))
utilsRankingMatrix(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.