-
Notifications
You must be signed in to change notification settings - Fork 0
/
AnalisisMultivariadoGraficos.R
333 lines (277 loc) · 11 KB
/
AnalisisMultivariadoGraficos.R
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
####===========================================================A.L.R.R.2021
# SCRIPT Análisis Multivariado
####===========================================================####
# Install necessary packages
library(ggplot2)
library(aplpack)
library(andrews)
library(GGally)
library(ggcorrplot)
library(ggpubr)
library(gridExtra)
####===========================================================####
# Set working directory
setwd(paste("/Users/adriana/Documents/Default/",
"Default",
sep = ""))
####===========================================================####
# Vector de medias x, matriz de varianzas-covarianzas S y
# matriz de correlaciones R de las variables numéricas.
# Cargar los datos y añadir columnas al environment
quejas <- read.csv("quejas.csv")
attach(quejas)
# Mostrar primeras observaciones de la base de datos y...
# ...su estructura
head(quejas)
str(quejas)
summary(quejas)
# Volver factores las variables de character
quejas$subjects <- factor(quejas$subjects)
quejas$SCD <- factor(quejas$SCD, levels = c("SCD", "CON"))
quejas$Gender <- factor(quejas$Gender)
quejas$timepoint <- factor(quejas$timepoint)
# Calcular la matriz de medias para las variables numéricas
vector_medias <-
round(apply(quejas[, unlist(lapply(quejas, is.numeric))],
2, mean, na.rm = T), 3)
# Calcular matriz de varianza-covarianza S
covar_matrix <- round(cov(quejas[, unlist(lapply(quejas, is.numeric))],
use = "pairwise.complete.obs"), 3)
# Matriz de correlaciones R
corr_matrix <- round(cor(quejas[, unlist(lapply(quejas, is.numeric))],
use = "pairwise.complete.obs"), 3)
# Ordenamos los valores de la matriz de correlaciones de una...
# ...de las partes triangulares de mayor a menor
ind <- order(abs(corr_matrix[lower.tri(corr_matrix, diag = F)]),
decreasing = T)
val <- as.vector(corr_matrix[lower.tri(
corr_matrix, diag = F)])[order(abs(
corr_matrix[lower.tri(corr_matrix,
diag = F)]),
decreasing = T)]
rbind("índice" = ind, "valores" = val)
####===========================================================####
# Varianza generalizada |S| y varianza muestral total
# Varianza generalizada. Determinante de la matriz de VarCov
det(covar_matrix)
# Varianza muestral total
n <- nrow(quejas)
sum(diag(covar_matrix))
####===========================================================####
# Distancia de Mahalanobis
# En este caso, usaremos imputación para no perder información...
# ...y poder obtener un valor de la distancia de Mahalanobis. ...
# ...Para esto, haremos imputación por la media:
# Confirmamos qué columnas tienen valores faltantes
colnames(quejas)[colSums(is.na(quejas)) > 0]
# Hacemos imputación para cada una
quejas[is.na(quejas$MFQFOFInvAver), "MFQFOFInvAver"] <-
vector_medias["MFQFOFInvAver"]
quejas[is.na(quejas$fminor_ICVF), "fminor_ICVF"] <-
vector_medias["fminor_ICVF"]
head(quejas)
# Cálculo de la distancia de Mahalanobis
dmahalanobis <- sqrt(mahalanobis(quejas[, unlist(lapply(
quejas, is.numeric))],
vector_medias,
covar_matrix))
# Mostrar resultados de mayor a menor
dmahalanobis[order(dmahalanobis, decreasing = T)]
# Adicionamos la probabilidad de ocurrencia de los valores...
# ...de DM, considerando que la distancia de Mahalanobis...
# ...se distribuye como una Chi Cuadrado con grados de...
# ...libertad igual al número de variables en la matriz de datos
# Combinamos la matriz de datos, la distancia de Mahalanobis
# ...y la probablidad Chi-cuadrado (P[X ≤ x]), con GL = k variables
# ...valor crítico chi cuadrado: qchisq(0.0001, 5) = 0.08217738
dmahalanobisp <-
cbind(quejas[, unlist(lapply(quejas, is.numeric))],
"DM" = round(dmahalanobis, 3),
"Prob" = round(pchisq(
dmahalanobis, length(quejas[, unlist(
lapply(quejas, is.numeric))])), 4))
# Mostramos sólo las 6 primeras filas
head(dmahalanobisp)
# Gráfico de cajas para detectar si existen valores atípicos
jpeg("Boxplot.jpeg", width = 1700, height= 1400, res = 300)
dm_boxplot <- boxplot(dmahalanobis, ylab = "Distancia de Mahalanobis")
dev.off()
# Valores atípicos
dmahalanobisp[which(dmahalanobisp$DM %in% round(dm_boxplot$out, 3)),]
quejas$subjects[which(dmahalanobisp$DM %in% round(dm_boxplot$out, 3))]
# Para detectar los datos atípicos, filtramos el dataframe...
# ...dmahalanobisp por las filas cuya probabilidad sea menor...
# ...a 0.001.
# Creamos un subgrupo de vectores atípicos p < 0.001
atipicos <- subset(dmahalanobisp, dmahalanobisp["Prob"] < 0.001)
####===========================================================####
# Gráficos Multivariados
# i) Matriz de diagramas de dispersión:
# De acuerdo con el estatus de "deterioro cognitivo subjetivo":
# azul: SCD; amarillo: CON
# Medición inicial
jpeg("pairs_t0.jpeg", width = 3200, height = 1800, res = 300)
pairs(quejas[which(quejas$timepoint == 1),
unlist(lapply(quejas, is.numeric))],
pch = 20, cex = 1.5,
col = c("cornflowerblue",
"darkgoldenrod")[quejas$SCD[which(
quejas$timepoint == 1)]],
cex.labels = 2)
dev.off()
# Segunda medición
jpeg("pairs_t1.jpeg", width = 3200, height = 1800, res = 300)
pairs(quejas[which(quejas$timepoint == 2),
unlist(lapply(quejas, is.numeric))],
pch = 20, cex = 1.5,
col = c("cornflowerblue",
"darkgoldenrod")[quejas$SCD[which(
quejas$timepoint == 2)]],
cex.labels = 2)
dev.off()
# Tercera medición
jpeg("pairs_t2.jpeg", width = 3200, height = 1800, res = 300)
pairs(quejas[which(quejas$timepoint == 3),
unlist(lapply(quejas, is.numeric))],
pch = 20, cex = 1.5,
col = c("cornflowerblue",
"darkgoldenrod")[quejas$SCD[which(
quejas$timepoint == 3)]],
cex.labels = 2)
dev.off()
# Por tiempos de medida
# Todos
jpeg("pairs_timepoints_black.jpeg", width = 3200, height = 1800, res = 300)
pairs(quejas[, unlist(lapply(quejas, is.numeric))],
pch = 20, cex = 1.5,
cex.labels = 2)
dev.off()
# De manera separada
jpeg("pairs_timepoints.jpeg", width = 3200, height = 1800, res = 300)
pairs(quejas[, unlist(lapply(quejas, is.numeric))],
pch = 20, cex = 1.5,
col = c("cornflowerblue",
"darkgoldenrod3", "chartreuse4")[quejas$timepoint],
cex.labels = 2)
dev.off()
# Diagrama de estrellas.
# Convertir "subjects" a "character" para los labels:
quejas$subjects <- as.character(quejas$subjects)
class(quejas$subjects)
# Tiempo 1
jpeg("stars1.jpeg", width = 3200, height = 2000, res = 300)
stars(quejas[which(quejas$timepoint==1),
unlist(lapply(quejas, is.numeric))],
labels = quejas$subjects[which(quejas$timepoint==1)],
nrow = 6, flip.labels = F, xpd = F, lwd = 2,
main = "Variación en T0",
key.labels = colnames(quejas[,
unlist(lapply(quejas, is.numeric))]),
key.loc = c(26, 1), draw.segments = T)
dev.off()
# Tiempo 2
jpeg("stars2.jpeg", width = 3200, height = 2000, res = 300)
stars(quejas[which(quejas$timepoint==2),
unlist(lapply(quejas, is.numeric))],
labels = quejas$subjects[which(quejas$timepoint==2)],
nrow = 6, flip.labels = F, xpd = T, lwd = 2,
main = "Variación en T1",
key.labels = colnames(quejas[,
unlist(lapply(quejas, is.numeric))]),
key.loc = c(17, 2), draw.segments = T)
dev.off()
# Verificando un valor:
min(quejas$MFQFOFInvAver[which(quejas$timepoint==2)])
# Tiempo 3
jpeg("stars3.jpeg", width = 3200, height = 2000, res = 300)
stars(quejas[which(quejas$timepoint==3),
unlist(lapply(quejas, is.numeric))],
labels = quejas$subjects[which(quejas$timepoint==3)],
nrow = 6, flip.labels = F, xpd = T, lwd = 2,
main = "Variación en T2",
key.labels = colnames(quejas[,
unlist(lapply(quejas, is.numeric))]),
key.loc = c(15, 2), draw.segments = T)
dev.off()
# Caras de Chernoff.
jpeg("Chernoff_faces.jpeg", width = 3200, height = 2400, res = 300)
faces(quejas[, unlist(lapply(quejas, is.numeric))],
main = "Descripción de la muestra",
labels = quejas$subjects,
ncol.plot = 13,
cex = 1.5)
dev.off()
# Curvas de Andrews.
# Variación por punto de tiempo
jpeg("andrews_time.jpeg", width = 3200, height = 2400, res = 300)
andrews(quejas, clr = 4)
dev.off()
# Variación por sexo de los participantes
jpeg("andrews_sex.jpeg", width = 3200, height = 2400, res = 300)
andrews(quejas, clr = 3)
dev.off()
# Variación por estatus de SCD
jpeg("andrews_SCD.jpeg", width = 3200, height = 2400, res = 300)
andrews(quejas, type = 1, clr = 2)
dev.off()
# Otros gráficos apropiados:
# En forma de matriz
ggpairs(quejas[, c(4, 5:9)],
mapping = ggplot2::aes(colour = timepoint))
ggsave("ggpairs.jpeg", width = 30, height = 20, units = "cm")
# Correlograma
ggcorrplot(corr_matrix,
p.mat = cor_pmat(quejas[, unlist(lapply(quejas, is.numeric))]),
type = "lower",
color = c("#00AFBB", "white", "#FC4E07"),
outline.col = "white",
lab = T)
ggsave("ggcorrplot.jpeg", width = 20, height = 18, units = "cm")
# Lollipops modificado
# Quejas de memoria (MFQ)
ggplot(quejas, aes(x = subjects, y = MFQFOFInvAver)) +
geom_segment(aes(x = subjects,
xend = subjects, y = mean(MFQFOFInvAver),
yend = MFQFOFInvAver),
size = 0.5, color = "black") + coord_flip(
) +
geom_hline(yintercept = mean(quejas$MFQFOFInvAver)) +
geom_point(aes(color = timepoint),
size = 3, alpha = 0.9) +
theme_light() + theme(
panel.border = element_blank())
ggsave("lollipop_mfq.png", width = 20, height = 24, units = "cm")
# ICVF
ggplot(quejas, aes(x = subjects, y = fminor_ICVF)) +
geom_segment(aes(x = subjects,
xend = subjects, y = mean(fminor_ICVF),
yend = fminor_ICVF),
size = 0.5, color = "black") + coord_flip(
) + geom_hline(yintercept = mean(quejas$fminor_ICVF)) +
geom_point(aes(color = timepoint),
size = 3, alpha = 0.9) +
theme_light() + theme(
panel.border = element_blank())
# ACC_MFG
ggplot(quejas, aes(x = subjects, y = ACC_MFG)) +
geom_segment(aes(x = subjects,
xend = subjects, y = mean(ACC_MFG),
yend = ACC_MFG),
size = 0.5, color = "black") + coord_flip(
) + geom_hline(yintercept = mean(quejas$ACC_MFG)) +
geom_point(aes(color = timepoint),
size = 3, alpha = 0.9) +
theme_light() + theme(
panel.border = element_blank())
# ACC_INS
ggplot(quejas, aes(x = subjects, y = ACC_INS)) +
geom_segment(aes(x = subjects,
xend = subjects, y = mean(ACC_INS),
yend = ACC_INS),
size = 0.5, color = "black") + coord_flip(
) + geom_hline(yintercept = mean(quejas$ACC_INS)) +
geom_point(aes(color = timepoint),
size = 3, alpha = 0.9) +
theme_light() + theme(
panel.border = element_blank())
#ggarrange(plotlist = c(mfq, icvf, mfg, ins))