Disproportionality: Disproportionality index of Rae - 1971 ("R")

Description Usage Arguments Value Functions Indicator Examples

Description

This index measures electoral disproportionality based on the result obtained in an election. It has the disadvantage that it is highly influenced by the number of small parties that compete in the elections. The formula used is as follows:

R = (1/n)*sum(|Vi-Ei|)

for i = 1, 2, …,n

To compute its value, an integer vector corresponding to the votes obtained by each party and another with the corresponding seats must be provided as parameters of the formula. The R code will be in charge of calculating the corresponding percentages to obtain the index.

Usage

1
Rae(votes, seats)

Arguments

votes

It is a vector of integers, containing the votes of all the candidates.

seats

It is a vector of integers, containing the seats obtained by each of the candidates.

Value

Returns the value obtained for the index

Functions

Indicator

NA

Examples

1
Rae(c(1200, 30, 4000),c(10,6,8))

Relectoral documentation built on July 2, 2020, 2:31 a.m.