-
Notifications
You must be signed in to change notification settings - Fork 1
/
Saber11_2014.Rmd
298 lines (231 loc) · 7.99 KB
/
Saber11_2014.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
---
title: "Saber 11 2014"
author: "Datum"
output: html_document
---
```{r setup, include = FALSE}
rm(list = ls())
library("knitr")
library("FactoMineR")
library("magrittr")
library("dplyr")
library("reshape2")
library("ggplot2")
library("colmaps")#devtools::install_github("nebulae-co/colmaps")
opts_chunk$set(
cache.path = "./cache/",
echo = TRUE,
results = "hide",
warning = FALSE,
fig.path = "./Figures/",
fig.keep = "last"
)
```
```{r data}
#load("./data/Saber11.RData")
install.packages("devtools")
devtools::install_github("nebulae-co/saber")
library("saber")
```
```{r municipios}
data(SB11_20142)
SB11_20142 %>% as.tbl %>%
mutate(
TOTAL = (3 * LECTURA_CRITICA_PUNT +
3 * MATEMATICAS_PUNT +
3 * SOCIALES_CIUDADANAS_PUNT +
3 * CIENCIAS_NATURALES_PUNT +
INGLES_PUNT) / 13) %>%
filter(is.na(DISC_COGNITIVA) &
is.na(DISC_CONDICION_ESPECIAL) &
is.na(DIS_MOTRIZ) &
is.na(DISC_INVIDENTE) &
is.na(DISC_SORDO) &
is.na(DISC_SDOWN) &
is.na(DISC_AUTISMO) & TOTAL > 10
) %>%
transmute(Total = TOTAL,
Lectura = LECTURA_CRITICA_PUNT,
Mate = MATEMATICAS_PUNT,
Sociales = SOCIALES_CIUDADANAS_PUNT,
Ciencias = CIENCIAS_NATURALES_PUNT,
Ingles = INGLES_PUNT,
Genero = PERS_GENERO,
Estrato = as.ordered(FINS_ESTRATOVIVIENDAENERGIA),
Departamento = DEPA_RESIDE,
id_Municipio = sprintf("%05d", COD_MUNI_RESIDE),
Municipio = MUNI_RESIDE) -> Saber11
municipios_50 <- Saber11 %>%
dplyr::group_by(id_Municipio) %>%
dplyr::summarise(N = n()) %>%
dplyr::filter(N > 50)
nuevo_saber_11 <- Saber11 %>%
dplyr::filter(id_Municipio %in% municipios_50$id_Municipio) %>%
dplyr::select(id_Municipio, Municipio, Departamento, Total)
factores <- sapply(X = nuevo_saber_11, FUN = is.factor)
nuevo_saber_11[, factores] %<>% lapply(FUN = factor)
rm(list = setdiff(ls(), c("nuevo_saber_11", "municipios_50", "dist_matrix")))
```
```{r Colmaps_tamaño}
colmaps::colmap(map = municipios, data = municipios_50, var = "N", data_id = "id_Municipio", map_id = "id", autocomplete = TRUE) +
ggtitle("Cantidad de estudiantes evaluados")
```
```{r ecdf}
evaluated_ecdf <- function(categories, values){
# a vector with sorted and unique values
unique(values) -> .
sort(.) -> ordenados
# a list of functions, one function per category
ecdf_categories <- tapply(X = values, INDEX = categories, FUN = ecdf)
# a data.frame with the evaluations of the functions in the sorted values
sapply(X = ecdf_categories, FUN = function(x, y){x(y)},
y = ordenados) -> .
t(.) ->.
data.frame(.)->.
set_colnames(., ordenados)
}
ecdf_eval <- nuevo_saber_11 %$% evaluated_ecdf(categories = id_Municipio, values = Total)
```
```{r ecdf_CvM_distance}
# Funcion de distancia entre vectores para aplicar a los totales de los municipios
fun_distance <- function(a, b, ...){
valores <- sort(unique(c(a, b)))
n <- length(valores)
diff_x <- diff(valores)
diff_2_y <- sapply(X = 1:(n-1),
FUN = function(x, v, a, b){
mean(v[x] >= a) - mean(v[x] >= b)
},
v = valores, a = a, b = b,
USE.NAMES = FALSE)
drop(diff_x %*% diff_2_y^2)
}
```
```{r dist_matrix, cache = TRUE}
# Funcion para alcular la matriz de distancias
# distance_matrix_f <- function(categories, values){
#
# unique(categories) -> .
# length(.) -> n_categories
#
# values_by_cat <- split(x = values, f = categories)
#
# dist_matrix <- matrix(nrow = n_categories, ncol = n_categories,
# dimnames = list(names(values_by_cat), names(values_by_cat)))
#
# dist_matrix[lower.tri(dist_matrix)] <-
# combn(values_by_cat, m = 2, FUN = function(x){fun_distance(x[[1]], x[[2]])})
#
# as.dist(dist_matrix)
#
# }
#
# dist_matrix <- nuevo_saber_11 %$% distance_matrix_f(categories = id_Municipio, values = Total)
# Partir los totales por municipio
totales <- nuevo_saber_11 %$% split(x = Total, f = id_Municipio)
#
# dist_matrix <- matrix(nrow = nrow(municipios_50), ncol = nrow(municipios_50),
# dimnames = list(names(totales), names(totales)))
#
# dist_matrix[lower.tri(dist_matrix)] <- totales %>%
# combn(m = 2, FUN = function(x){fun_distance(x[[1]], x[[2]])})
#
# dist_matrix %<>% as.dist
# To reaload the dist_matrix
opts_knit$set("output.dir"= getwd())
knitr::load_cache(label = "dist_matrix", object = "dist_matrix")
```
```{r agrupamiento}
clustering_municipios <- dist_matrix %>%
hclust(method = "ward.D2") # Agruparlo con el método de ward
#plot(clustering_municipios, label=FALSE)
# grupo <- c(Pionero = 5, Suficiente = 2, Regular = 1, Insuficiente = 4,
# Prioritario = 3, Otro = 6)
numero_grupos<-10
grupos_municipios <- clustering_municipios %>% cutree(k = numero_grupos)
ecdf_eval %>% apply(MARGIN = 1, FUN = sum) %>% aggregate(., by=list(grupos_municipios), FUN = mean) %$% x %>% factor(ordered = TRUE, labels = LETTERS[1:numero_grupos]) -> nombres_grupos
ecdf_eval %>% kmeans(aggregate(., by=list(grupos_municipios),FUN=mean)[,-1]) %$%
cluster ->
grupos_municipios
nombres_grupos[grupos_municipios] -> grupos_municipios
ggplot(data.frame(grupos_municipios = grupos_municipios), aes(factor(1), fill = grupos_municipios)) +
geom_bar(width = 1) +
coord_polar(theta = "y")
grupos_municipios %>% table
```
```{r ACP}
ACP_de_municipios <- ecdf_eval %>%
FactoMineR::PCA(graph = FALSE)
RESULTADO <- data.frame(
id = municipios_50$id_Municipio,
x = ACP_de_municipios$ind$coord[, 1],
y = ACP_de_municipios$ind$coord[, 2],
z = ACP_de_municipios$ind$coord[, 3],
N = municipios_50$N,
grupo = grupos_municipios,
stringsAsFactors = FALSE
)
RESULTADO <- merge(x = RESULTADO, y = municipios@data, by.x = "id", by.y = "id")
qplot(x = x, y = y, colour = grupo, size = N, data = RESULTADO)
#plot(ACP_de_municipios, label="none", axes = c(1,2))
#plot(ACP_de_municipios, choix = "var") #para ver la correlación de las variables
```
```{r raster_plot}
dff_to_plot <- ecdf_eval %>% mutate(id_municipio = rownames(.),
grupo = grupos_municipios) %>%
melt(id.vars = c("id_municipio", "grupo")) %>% arrange(grupo)
dff_to_plot %>%
ggplot +
aes(y = variable, x = id_municipio, fill = value) +
geom_raster() +
theme(axis.ticks = element_blank(), axis.text = element_blank(), legend.position="none") +
xlab("") +
ylab("") -> general_raster_plot
general_raster_plot
```
```{r raster_plot2}
general_raster_plot +
facet_grid(~ grupo, scale = "free_x", space = "free_x")
```
```{r box_plot}
merge(nuevo_saber_11, RESULTADO, by.x = "id_Municipio", by.y = "id") -> dff_to_plot
dff_to_plot %>% ggplot +
layer(
geom = "boxplot",
mapping = aes(x = id_Municipio, y = Total)
) +
theme(axis.ticks = element_blank(), axis.text.x = element_blank(), panel.background = element_blank()) +
xlab("") +
ylab("") -> general_box_plot
general_box_plot
```
```{r box_plot2}
general_box_plot +
facet_grid(~ grupo, scales = "free_x", space = "free_x")
```
```{r density_plot}
dff_to_plot %>%
ggplot +
aes(x = Total, colour = id_Municipio) +
geom_density() +
theme(axis.ticks = element_blank(), axis.text = element_blank(), legend.position="none") +
xlab("") +
ylab("") -> general_density_plot
general_density_plot
```
```{r density_plot2}
general_density_plot +
facet_wrap(~ grupo, ncol = 2)
```
```{r Colmaps_todo}
colmaps::colmap(map = municipios, data = RESULTADO, var = "grupo", map_id = "id", data_id = "id", autocomplete = TRUE)
```
```{r Kruskal-Wallis}
list_for_kwtest<-split(totales, grupos_municipios)
lapply(X = list_for_kwtest, FUN = function(x){kruskal.test(x)$p.value}) %>%
unlist %>% data.frame %>% setNames("P_value") %>% mutate(grupo = rownames(.)) -> kwtest_pvalues
kwtest_pvalues %>% ggplot + aes(x = grupo, y = P_value) +
geom_bar(stat = "identity") +
geom_abline(intercept = 0.005, slope = 0) +
ggtitle("P valores Kruskall Wallis para los grupos")
```