View source: R/rankingMethods.R
rankThenAggregate | R Documentation |
Performs ranking by first computing a rank for each case for each algorithm ("rank first"). The final rank is based on the aggregated ranks for the cases. This ranking method handles missing values implicitly by assigning the worst rank to missing algorithm performances.
rankThenAggregate(object, FUN, ties.method = "min")
object |
The challenge object. |
FUN |
The aggregation function, e.g., mean, median, min, max, function(x), quantile(x, probs=0.05). |
ties.method |
A string specifying how ties are treated, see |
An S3 object of class "ranked.list" to represent a ranked assessment data set.
Other ranking functions:
aggregateThenRank()
,
testThenRank()
## Not run:
rankThenAggregate(challenge, FUN = mean)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.