utilsCalculateRank {rSRD} | R Documentation |
utilsCalculateRank
Description
Calculates the ranking of a given column.
Usage
utilsCalculateRank(df, nameCol)
Arguments
df |
A DataFrame. |
nameCol |
The name of the column to be ranked. Note that this parameter needs to be specified as there is no default value. |
Value
Returns a new df
that has an additional column with
the rankings of the column specified by nameCol
.
Author(s)
Jochen Staudacher jochen.staudacher@hs-kempten.de
Examples
SRDInput <- 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))
columnName <- "A"
rSRD::utilsCalculateRank(SRDInput,columnName)
[Package rSRD version 0.1.7 Index]