-
Notifications
You must be signed in to change notification settings - Fork 0
/
voto_cmd_partidos.Rmd
131 lines (97 loc) · 3.23 KB
/
voto_cmd_partidos.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
---
title: "voto_escalamiento dimensional por partidos politicos"
output: html_notebook
editor_options:
chunk_output_type: console
---
# Get Data (previa trabajada en otra script)
```{r}
df_inicial = read.csv("E:/Proyectos R/elecciones2021/df_webscraping.csv")
df_inicial = df_inicial[,3:5]
df_inicial$TOTAL_VOTOS = parse_number(df_inicial$TOTAL_VOTOS, locale = locale(grouping_mark = ","))
colnames(df_inicial)
str(df_inicial)
```
# set direccion
```{r}
setwd("E:/Proyectos R/web scraping/ONPE 2021_1")
getwd()
```
# limpieza de datos
[19] "TOTAL DE VOTOS VÁLIDOS"
[20] "VOTOS EN BLANCO"
[21] "VOTOS NULOS"
[22] "TOTAL DE VOTOS EMITIDOS"
```{r}
unique(df_inicial$AGRUPACION)
```
```{r}
out = c("TOTAL DE VOTOS VÁLIDOS",
"VOTOS EN BLANCO",
"VOTOS NULOS",
"TOTAL DE VOTOS EMITIDOS")
lista_agrupaciones = unique(df_inicial$AGRUPACION)
lista_agrupaciones
lista_agrupaciones = lista_agrupaciones[1:18]
df_oficial = filter(df_inicial, AGRUPACION %in% lista_agrupaciones)
```
# Spread data y rownames
```{r}
df_oficial_s = spread(df_oficial, key = DESC_DEP, value = TOTAL_VOTOS)
# row names
df_oficial_names = df_oficial_s$AGRUPACION
df_oficial_row = data.frame(df_oficial_s[,-1], row.names = df_oficial_names)
```
## usar solo si las label son partidos politicos ##
```{r}
df_oficial_row = as.data.frame(t(df_oficial_row))
```
```{r}
df_cmd = cmdscale(dist(df_oficial_row))
```
# Cluster
```{r}
k_means = kmeans(dist(df_oficial_row),3)
```
# Agregando Cluster a departamentos
```{r}
df_oficial_row_cmd = as.data.frame(data.frame(cluster = k_means$cluster, df_cmd))
```
```{r}
colnames(df_oficial_row_cmd)
```
## graf. por departamentos con PC1 y PC2
```{r}
ggplot(df_oficial_row_cmd, aes(x=X1, y=X2, color = as.factor(cluster), label = rownames(df_oficial_row_cmd)))+
geom_point()+ geom_vline(xintercept = 0)+ geom_hline(yintercept = 0)+
geom_text()+
labs(title = "Diagrama de dispersión por departamentos según los dos primeros componentes principales", subtitle = "Elaborado: Luis Miguel Meza Ramos")+
theme(legend.position="top")
```
#exp. grafico
```{r}
ggsave("voto_cluster_139.png", scale = 2)
```
---------------------------------------------
## Voto por departamento
```{r}
sum_dep = apply(df_oficial_row, 1, FUN = "sum")
df_agg = data.frame(df_oficial_row_cmd, sum_dep)
```
## graf. por departamentos con PC1 y PC2 y vol de votos
```{r}
ggplot(df_agg, aes(x=X1, y=X2, color = as.factor(cluster), label = rownames(df_agg), size = sum_dep))+
geom_point(alpha =0.5)+ geom_vline(xintercept = 0)+ geom_hline(yintercept = 0)+
geom_text()+
labs(title = "Diagrama de dispersión por departamentos según los dos primeros componentes principales", subtitle = "Elaborado: Luis Miguel Meza Ramos")+
theme(legend.position="top")
```
#exp. grafico
```{r}
ggsave("voto_cluster_139.png", scale = 2)
```
## agr por cluster y vol de votos por departamento
```{r}
aggregate(df_agg$sum_dep, by = list(df_agg$cluster), FUN = "mean")
```
--------------