-
Notifications
You must be signed in to change notification settings - Fork 0
/
AD1920.Rmd
422 lines (326 loc) · 15.2 KB
/
AD1920.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
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
---
title: "Analyse en Composantes Principales sous R"
author: "Clément ANTHEAUME & Minh-Hoang DANG"
output:
html_document:
toc: yes
df_print: paged
html_notebook: default
pdf_document: default
---
# Introduction
Dans ce notebook, nous allons détailler tous les démarches que nous avons fait pour construire une fonction permettant de faire l'ACP et une fonction qui permet d'illustrer les résultats avec ```ggplot2```. Ce notebook peut être considéré comme l'annexe du [rapport](https://docs.google.com/document/d/18y73gUgeBsztMOc3rPa-kXOBZYtIqHdPNEHJc_8H4Qs/edit?usp=sharing). Le code source du projet est disponible sur [GitHub](https://github.com/mhoangvslev/Analyse-en-Composantes-Principales-sous-R).
# Les données
Nous avons un jeu de données contenant les mesures sur 1000 gènes de 40 individus. Les 20 premiers individus sont en bonne santé et les autres sont malades. A travers des analyses, nous visons à détecter les gènes qui contribue à la maladie.
```{r}
genes <- read.csv("./Projet M1 AD 1920.csv", header=FALSE);
```
```{r}
boxplot(genes)
```
Les valeurs aberrantes sont plutôt présentes parmi les individus malades. Autrement dit, l’évaluation de ces valeurs peuvent potentiellement révéler les indicateurs concernant la maladie.
```{r}
boxplot(t(genes))
```
Le diagramme en boîtes pour les 1000 gènes met en évidence 2 groupes de gènes qui diffèrent nettement des autres. Le premier groupe de gènes, entre 10 et 21. Le deuxième groupe de gènes, entre 501 et 601.
```{r}
groupe1 <- t(genes)[, 11:20];
groupe2 <- t(genes)[, 501:600];
boxplot(groupe1);
boxplot(groupe2)
```
On peut déduire la variabilité de l’expression des gènes est très faible entre les individus. Cependant, certains gènes s’exprime plus fortement que les autres et parmi les gènes dont l’expression est supérieure, la variabilité est plutôt faible.
# ACP sous R
## Calculer le centre de gravité
```{r}
test.gravity <- colMeans(genes);
test.nbIndv <- nrow(genes);
test.nbVars <- ncol(genes);
```
## Calculer la matrice centrée
```{r}
reduite = FALSE;
test.scaled <- apply(genes, 2, function(col) (col - mean(col))/ if (reduite) (sd(col) * sqrt((test.nbIndv-1)/test.nbIndv)) else 1);
test.scaled2 <- scale(genes, center = TRUE, scale = reduite);
#equalsTest(test.scaled, test.scaled2)
```
## Calculer la matrice d'inertie
$$S = \frac{1}{n}Y_c^\top \times Y_c$$
```{r}
test.inertie <- (1/test.nbIndv) * t(test.scaled) %*% test.scaled;
test.Ig <- sum(diag(test.inertie));
```
## Des valeurs propres et les vecteurs propres
```{r}
eig <- eigen(test.inertie);
test.eigenvalues <- eig$values;
test.eigenvectors <- eig$vectors;
test.percentageInertie <- test.eigenvalues * 100/test.Ig;
```
## Composantes principales
$F = Y_c \times U$ est la projection de $Y$. Chaque observation est une combinaison de la variable originelle et leur poids est determiné par les valeurs propres (les axes principaux).
```{r}
nbComponents <- 2
test.components <- test.scaled %*% test.eigenvectors[, 1:nbComponents]
```
```{r}
equalsTest <- function(subjectA, subjectB, precision = 3){
return(all(
round(subjectA, precision) == round(subjectB, precision)
))
}
```
## Les individus
### Contribution relative des individus
```{r}
test.qltIndv <- matrix(0, nrow = test.nbIndv, ncol = nbComponents);
for(indv in 1:test.nbIndv){
for(axe in 1:nbComponents){
test.qltIndv[indv, axe] <- (test.components[indv, axe]**2) / sum(test.components[indv, ]**2)
}
}
test.qltIndv2 <- matrix(unlist(lapply(1:test.nbIndv, function(indv){
(test.components[indv, ]**2) / sum(test.components[indv, ]**2)
})), nrow = test.nbIndv, ncol = nbComponents, byrow = TRUE);
equalsTest(test.qltIndv, test.qltIndv2)
equalsTest(rowSums(test.qltIndv2), 1)
```
### Contribution absolue des individus
```{r}
test.ctrIndv <- matrix(0, nrow = test.nbIndv, ncol = nbComponents)
for(indiv in 1:test.nbIndv){
for(axe in 1:nbComponents){
test.ctrIndv[indiv,axe]<- (test.components[indiv,axe]**2)/(test.nbIndv * test.eigenvalues[axe])
}
}
test.ctrIndv2 <- matrix(unlist(lapply(1:nbComponents, function(axe){
test.components[, axe]**2 / (test.nbIndv * test.eigenvalues[axe])
})), nrow = test.nbIndv, ncol = nbComponents);
equalsTest(test.ctrIndv, test.ctrIndv2)
equalsTest(colSums(test.ctrIndv2), 1)
```
contributions<-matrix(0,nbIndiv,nbAxes)
## Variable
### Coordonnées des variables
```{r}
test.coords <- matrix(0, test.nbVars, nbComponents)
for(axe in 1:nbComponents){
test.coords[,axe] <- sqrt(test.eigenvalues[axe]) * test.eigenvectors[, axe]
};
test.coords2 <- matrix(unlist(lapply(1:nbComponents, function(axe){
sqrt(test.eigenvalues[axe]) * test.eigenvectors[, axe]
})), ncol = nbComponents, nrow = test.nbVars);
equalsTest(test.coords, test.coords2)
```
## Corrélation entre les variables initiales et les composantes principales
```{r}
test.corVar <- matrix(unlist(lapply(1:nbComponents, function(axe){
sqrt(test.eigenvalues[axe]/test.inertie[axe, axe]) * test.eigenvectors[, axe]
})), ncol = nbComponents, nrow = test.nbVars);
```
### Contribution relative
```{r}
test.qltVar <- matrix(unlist(lapply(1:test.nbVars, function(vr){
(test.coords[vr, ]**2) / sum(test.coords[vr, ]**2)
})), nrow = test.nbVars, ncol = nbComponents, byrow = TRUE);
equalsTest(rowSums(test.qltVar), 1)
```
### Contribution absolue
```{r}
test.ctrVar <- matrix(0, nrow = test.nbVars, ncol = nbComponents);
for(vr in 1:test.nbVars){
for(axe in 1:nbComponents){
test.ctrVar[vr, axe] <- test.coords[vr, axe]**2 / test.inertie[axe, axe] / test.eigenvalues[axe]
}
}
test.ctrVar1 <- matrix(unlist(lapply(1:nbComponents, function(axe){
test.coords[,axe]**2 / (test.inertie[axe, axe] * test.eigenvalues[axe])
})), nrow = test.nbVars, ncol = nbComponents);
equalsTest(test.ctrVar, test.ctrVar1)
colSums(test.ctrVar1)
equalsTest(colSums(test.ctrVar), 1, precision = 1)
```
## Finalement, la fonction ACP de notre rêve!
```{r}
ACP <- function(rawData, standardisation = FALSE, nbComps = 2 ) {
result <- list();
# Calcul des valeurs intermédiaires
nbIndv <- nrow(rawData);
nbVars <- ncol(rawData);
# Centrer et/ou réduire les données
scaled <- apply(rawData, 2, function(col){
(col - mean(col))/ if (standardisation) (sd(col) * sqrt((nbIndv-1)/nbIndv)) else 1;
});
# Calculer la matrice d'inertie
inertie <- (1/nbIndv) * t(scaled) %*% scaled;
# Des valeurs propres et les vecteurs propres
eig <- eigen(inertie);
eigenvalues <- eig$values;
eigenvectors <- eig$vectors;
result$eig <- as.data.frame(cbind(round(eigenvalues, 3),
round(eigenvalues / sum(eigenvalues), 3),
round(cumsum(eigenvalues / sum(eigenvalues)), 3)));
colnames(result$eig) <- c("Valeurs propres", "% de variance", "% cumulé de variance");
# Composantes principales
result$ind$coords <- scaled %*% eigenvectors[, 1:nbComps];
colnames(result$ind$coords) <- colnames(result$ind$coords, do.NULL = FALSE, prefix = "Comp. ");
# Individus
## Contribution relative
result$ind$qlt <- matrix(unlist(lapply(1:nbIndv, function(indv){
(result$ind$coords[indv, ]**2) / sum(result$ind$coords[indv, ]**2)
})), nrow = nbIndv, ncol = nbComps, byrow = TRUE);
colnames(result$ind$qlt) <- colnames(result$ind$qlt, do.NULL = FALSE, prefix = "Comp. ");
## Contribution absolue
result$ind$ctr <- matrix(unlist(lapply(1:nbComps, function(axe){
result$ind$coords[, axe]**2 / (nbIndv * eigenvalues[axe])
})), nrow = nbIndv, ncol = nbComps);
colnames(result$ind$ctr) <- colnames(result$ind$ctr, do.NULL = FALSE, prefix = "Comp. ");
# Variables
## Coordonnées des variables
result$var$coords <- matrix(unlist(lapply(1:nbComps, function(axe){
sqrt(eigenvalues[axe]) * eigenvectors[, axe]
})), ncol = nbComps, nrow = nbVars);
colnames(result$var$coords) <- colnames(result$var$coords, do.NULL = FALSE, prefix = "Comp. ");
## Corrélation entre les variables initiales et les composantes principales
result$var$cor <- matrix(unlist(lapply(1:nbComps, function(axe){
result$var$coords[, axe] / sqrt(inertie[axe, axe])
})), nrow = nbVars, ncol = nbComps);
colnames(result$var$cor) <- colnames(result$var$cor, do.NULL = FALSE, prefix = "Comp. ");
## Contribution relative
result$var$qlt <- matrix(unlist(lapply(1:nbVars, function(vr){
(result$var$coords[vr, ]**2) / sum(result$var$coords[vr, ]**2)
})), nrow = nbVars, ncol = nbComps, byrow = TRUE);
colnames(result$var$qlt) <- colnames(result$var$qlt, do.NULL = FALSE, prefix = "Comp. ");
## Contribution absolue
result$var$ctr <- matrix(unlist(lapply(1:nbComps, function(axe){
result$var$coords[,axe]**2 / (inertie[axe, axe] * eigenvalues[axe])
})), nrow = nbVars, ncol = nbComps);
colnames(result$var$ctr) <- colnames(result$var$ctr, do.NULL = FALSE, prefix = "Comp. ");
# Retourner le résultat
return(result);
}
```
```{r}
testACP <- ACP(t(genes), standardisation = FALSE, nbComps = 2);
```
## Interprétation
### Variable
```{r}
library(ggplot2)
library(viridis)
plotACP <- function(resultACP, attribut = c("var", "ind"), prp = c("qlt", "ctr", "coords"), x, y, clr, titre = "", viridis_palette = "D"){
continous <- length(clr) == 1;
df <- as.data.frame(resultACP[[attribut]][["coords"]]);
dfclr <- if(continous) dfclr <- as.data.frame(resultACP[[attribut]][[prp]])[[clr]] else clr;
dfclrName <- if(continous) clr else "Groupes";
plt <- ggplot(df, mapping = aes(x = df[[x]], y = df[[y]], color = dfclr));
plt <- plt + geom_point()
if(!continous) {
plt <- plt + stat_ellipse();
}else{
plt <- plt + scale_color_viridis(option = viridis_palette);
}
plt <- plt + ggtitle(titre) + xlab(x) + ylab(y) + labs(color = dfclrName);
plt <- plt + theme(
plot.title = element_text(color = "black", face = "bold"),
axis.title.x = element_text(color = "black", face = "bold"),
axis.title.y = element_text(color = "black", face = "bold")
);
plt;
}
```
```{r}
library(ggplot2)
inrtPrcnt <- subset(testACP$eig, testACP$eig$`Valeurs propres` > 1)
dimensions <- c(1: nrow(inrtPrcnt))
barplot(inrtPrcnt[, 1])
inrtPrcntPlot <- ggplot(inrtPrcnt, aes(x = dimensions, y = `% de variance`)) +
geom_bar(stat = "identity")
inrtPrcntPlot
```
```{r}
varClrs <- sapply(1:nrow(testACP$var$coords), function(id){
ifelse(id >= 11 && id <= 20, "Gènes 11-20",
ifelse(id >= 501 && id <= 600, "Gènes 501-600", "Autres"))
});
plotACP(testACP, attribut = "var", x = "Comp. 1", y = "Comp. 2", prp = "cor", clr = varClrs, titre = "Corrélation entre les composantes principales et les variables");
k2VarClrs <- sapply(kmeans(testACP$var$coords, 2, nstart = 25)$cluster, toString);
plotACP(testACP, attribut = "var", x = "Comp. 1", y = "Comp. 2", prp = "coords", clr = k2VarClrs, titre = "Classification 2-means des variables");
k3VarClrs <- sapply(kmeans(testACP$var$coords, 3, nstart = 25)$cluster, toString);
plotACP(testACP, attribut = "var", x = "Comp. 1", y = "Comp. 2", prp = "coords", clr = k3VarClrs, titre = "Classification 3-means des variables");
plotACP(testACP, attribut = "var", x = "Comp. 1", y = "Comp. 2", prp = "qlt", clr = "Comp. 1", titre = "Qualité de la représentation des variables sur Axe 1");
plotACP(testACP, attribut = "var", x = "Comp. 1", y = "Comp. 2", prp = "qlt", clr = "Comp. 2", titre = "Qualité de la représentation des variables sur Axe 2");
plotACP(testACP, attribut = "var", x = "Comp. 1", y = "Comp. 2", prp = "ctr", clr = "Comp. 1", titre = "Contribution des variables sur Axe 1", viridis_palette = "plasma");
plotACP(testACP, attribut = "var", x = "Comp. 1", y = "Comp. 2", prp = "ctr", clr = "Comp. 2", titre = "Contribution des variables sur Axe 2", viridis_palette = "plasma");
```
#### k-means en 3D
```{r}
library(rgl)
k <- kmeans(testACP$var$ctr, 15, nstart=25, iter.max=1000)
plot3d(testACP$var$coords, col = k$clust)
```
### Individus
```{r}
indCorClrs <- sapply(1:nrow(testACP$ind$coords), function(id){
ifelse(id <= 20, "Individus sains", "Individus malades")
})
plotACP(testACP, attribut = "ind", "ind", x = "Comp. 1", y = "Comp. 2", prp = "coords", clr = indCorClrs, titre = "Position des individus sur les axes");
k2IndClrs <- sapply(kmeans(testACP$ind$coords, 2)$cluster, toString);
table(k2IndClrs)
plotACP(testACP, attribut = "ind", x = "Comp. 1", y = "Comp. 2", prp = "coords", clr = k2IndClrs, titre = "Classification 2-means des individus");
k3IndClrs <- sapply(kmeans(testACP$ind$coords, 3, nstart = 25)$cluster, toString);
table(k3IndClrs)
plotACP(testACP, attribut = "ind", x = "Comp. 1", y = "Comp. 2", prp = "coords", clr = k3IndClrs, titre = "Classification 3-means des individus");
plotACP(testACP, attribut = "ind", x = "Comp. 1", y = "Comp. 2", prp = "qlt", clr = "Comp. 1", titre = "Qualité de la représentation des individus sur Axe 1", viridis_palette = "plasma");
plotACP(testACP, attribut = "ind", x = "Comp. 1", y = "Comp. 2", prp = "qlt", clr = "Comp. 2", titre = "Qualité de la représentation des individus sur Axe 2", viridis_palette = "plasma");
plotACP(testACP, attribut = "ind", x = "Comp. 1", y = "Comp. 2", prp = "ctr", clr = "Comp. 1", titre = "Contribution des individus sur Axe 1", viridis_palette = "plasma");
plotACP(testACP, attribut = "ind", x = "Comp. 1", y = "Comp. 2", prp = "ctr", clr = "Comp. 2", titre = "Contribution des individus sur Axe 2", viridis_palette = "plasma");
```
# Autre outils ACP
## ```FactoMineR```
```{r}
library(FactoMineR)
library(factoextra)
factominer <- PCA(t(genes), scale.unit = FALSE, ncp = 2)
fviz_eig(factominer, addlabels = TRUE)
```
### Variables
```{r}
fviz_pca_var(factominer, col.var = "cos2") + scale_color_viridis(option = "D")
fviz_pca_var(factominer, col.var = "contrib") + scale_color_viridis(option = "D")
fviz_pca_var(factominer, col.var = varClrs, geom.var = "point", addEllipse = TRUE, legend.title = "marquage initial")
fviz_pca_var(factominer, col.var = k2VarClrs, geom.var = "point", addEllipse = TRUE, legend.title = "2-means classification")
```
### Individus
```{r}
fviz_pca_ind(factominer, col.ind = "cos2") + scale_color_viridis(option = "plasma")
fviz_pca_ind(factominer, col.ind = "contrib") + scale_color_viridis(option = "plasma")
fviz_pca_ind(factominer, col.ind = indCorClrs, geom.ind = "point", addEllipses = TRUE, legend.title = "marquage initial")
fviz_pca_ind(factominer, col.ind = k2IndClrs, geom.ind = "point", addEllipses = TRUE, legend.title = "3-means classification")
```
### Comparaison avec notre ACP
#### Variables
```{r}
equalsTest(abs(testACP$var$coords), abs(factominer$var$coord))
equalsTest(abs(testACP$var$cor), abs(factominer$var$cor))
equalsTest(abs(testACP$var$qlt), abs(factominer$var$cos2))
equalsTest(abs(testACP$var$ctr), abs(factominer$var$contrib))
```
#### Individus
```{r}
equalsTest(abs(testACP$ind$coords), abs(factominer$ind$coord))
equalsTest(abs(testACP$ind$qlt), abs(factominer$ind$cos2))
equalsTest(abs(testACP$ind$ctr), abs(factominer$ind$contrib))
```
## ```prcomp```
```{r}
library(ggfortify)
library(ggplot2)
prcompsInd <- prcomp(t(genes))
prcompsVar <- prcomp(genes)
autoplot(prcompsVar, colour = sapply(1:nrow(prcompsVar$x), function(id){
ifelse(id >= 11 && id <= 20 , rgb(1, 0, 0, 1), ifelse(id >= 501 && id <= 600, rgb(0, 1, 0, 1), rgb(0, 0, 0, 0.2)))
}))
library(cluster)
autoplot(fanny(as.data.frame(t(genes)), 2), frame = TRUE, label = TRUE)
```