borda_count: Borda count

View source: R/rating_methods.R

borda_countR Documentation

Borda count

Description

Rank aggregation with the Borda count method

Usage

borda_count(R, v = NULL)

Arguments

R

matrix with rankings

v

vector of votes for each ranking

Value

Vector with aggregated ranking

Author(s)

Pedro Guarderas pedro.felipe.guarderas@gmail.com

Examples

m <- 10
n <- 5
R <- matrix( runif( m * n ), m, n )
v <- sample( 50:100, n )
r <- borda_count( R, v )

pedroguarderas/mau documentation built on Oct. 30, 2023, 4:20 a.m.