View source: R/compute_concentration.R
compute_concentration | R Documentation |
Calcula el índice de concentración electoral de una elección en función del porecentaje acumulado de las dos listas más votadas (Computes the electoral concentration index of an election based on the accumulated percentage of the two most voted lists)
compute_concentration(data)
data |
la base de datos para hacer el cálculo obtenida con |
REQUISITO:
El formato de data
debe ser long
para calcular compute_concentration
.
Si data
es wide se puede transformar con make_long
(long
format of data
is required for compute_concentration
.
If data
is in wide format you can transform it with make_long
)
NOTA:
el grado de concentración será sensible al nivel de agregación de los datos determinados por el parámetro level
de
get_election_data
(the degree of concentration will be sensitive to the level of aggregation of the data determined by the parameter level
of
get_election_data
).
Devuelve un tibble con class "tbl_df","tbl", "data.frame"
con el cómputo de concentración. Puede tomar valores entre 0
y 1
,
siendo concentracion = 1
el de mayor grado (un solo partido obtiene todos los votos).
(Returns a tibble with class "tbl_df", "tbl", "data.frame"
with concentration computation. It can take values between 0
, 1
,
with concentration = 1
being the highest degree (a single party gets all the votes)).
compute_competitiveness, compute_seats, compute_nep, compute_disproportion
tucuman_dip_gral_2017
tucuman_dip_gral_2017 %>%
compute_concentration()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.