renewal {politicsR} | R Documentation |
Parliamentary Renewal
Description
'renewal' calculates parliamentary renewal rates
Usage
renewal(
seats = NULL,
dropout = NULL,
defeated = NULL,
reelected = NULL,
type = "all"
)
Arguments
seats |
( |
dropout |
( |
defeated |
( |
reelected |
( |
type |
( |
Details
gross renewal rate = ((dropout + defeated) / seats) * 100
compulsory renewal rate = (dropout / seats) * 100
net renewal rate = (defeated / (reelected + defeated)) * 100
Value
A percentage which is the Renewal Rate. See parameter type.
References
SANTOS, W. G. D. (2002). Votos e partidos: almanaque de dados eleitorais. Brasil e outros paĆses. Rio de Janeiro: Editora FGV.
Examples
seats <- 27
dropout <- 9
defeated <- 6
reelected <- 12
renewal(seats, dropout, defeated, reelected)