R/competitiveness.R

Defines functions competitiveness

Documented in competitiveness

#  Party System Indicators - Competitiveness----

competitiveness <- function(votes) {
     if (class(votes) != 'numeric') {
          stop('Input vector must be numeric')
     }
     if (length(votes) < 2 & class(votes) == 'numeric') {
          stop('Input vector must have minimal lenght of 2.')
     }
     fractions <- sort(votes/sum(votes), decreasing = TRUE)
     1 - (fractions[1] - fractions[2])
}

Try the electoral package in your browser

Any scripts or data that you put into this service are public.

electoral documentation built on April 1, 2022, 1:06 a.m.