R/concentration.R

Defines functions concentration

Documented in concentration

#  Party System Indicators - Concentration----

concentration <- 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.')
     }
     sum(sort(votes/sum(votes), decreasing = TRUE)[1:2])
}
albuja/electoral documentation built on Feb. 7, 2023, 5:12 a.m.