-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInvestigate.Rmd
488 lines (320 loc) · 29.9 KB
/
Investigate.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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
---
title: "Principal Component Analysis"
author: "Dataset otu_table"
output:
pdf_document: default
html_document: default
---
This dataset contains 151 individuals and 50 variables.
- - -
```{r, echo = FALSE}
library(FactoMineR)
load('~/Documents/GitHub/fish_barcoding/Workspace.RData')
```
### 1. Study of the outliers
The analysis of the graphs does not detect any outlier.
- - -
### 2. Inertia distribution
The inertia of the first dimensions shows if there are strong relationships between variables and suggests the number of dimensions that should be studied.
The first two dimensions of analyse express **15.88%** of the total dataset inertia ; that means that 15.88% of the individuals (or variables) cloud total variability is explained by the plane.
This is a very small percentage and the first plane represents a small part of the data variability.
This value is greater than the reference value that equals **9.47%**, the variability explained by this plane is thus significant
(the reference value is the 0.95-quantile of the inertia percentages distribution obtained by simulating 1726 data tables of equivalent size on the basis of a normal distribution).
From these observations, it is important to also interpret the dimensions greater or equal to the third one.
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
par(mar = c(2.6, 4.1, 1.1, 2.1))
ggplot2::ggplot(cbind.data.frame(x=1:nrow(res$eig),y=res$eig[,2])) + ggplot2::aes(x=x, y=y)+ ggplot2::geom_col(fill="blue") + ggplot2::xlab("Dimension") + ggplot2::ylab("Percentage of variance") + ggplot2::ggtitle("Decomposition of the total inertia") + ggplot2::theme_light() + ggplot2::theme(plot.title = ggplot2::element_text(hjust =0.5)) + ggplot2::scale_x_continuous(breaks=1:nrow(res$eig))
```
**Figure 2 - Decomposition of the total inertia**
An estimation of the right number of axis to interpret suggests to restrict the analysis to the description of the first 11 axis.
These axis present an amount of inertia greater than those obtained by the 0.95-quantile of random distributions (53.14% against 41.8%).
This observation suggests that only these axis are carrying a real information.
As a consequence, the description will stand to these axis.
- - -
### 3. Description of the plane 1:2
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("X017_X07_FJ8_18S_AMB", "X017_X07_D29_18S_AMB", "X017_X07_C24_18S_AMB",
"X10_X06_G42_18S_AMB", "X10_X06_J49_18S_AMB", "X10_X06_H46_18S_AMB",
"X10_X06_H48_18S_AMB", "X04_X04_G44_18S_AMB", "X07_X05_A9_18S_AMB",
"X017_X07_C25_18S_AMB")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = c(1,2), choix = 'ind', invisible = 'quali', title = '', cex = cex)
```
**Figure 3.1 - Individuals factor map (PCA)**
*The labeled individuals are those with the higher contribution to the plane construction.*
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("Augaptilidae", "Paracalanidae", "Corycaeidae", "Sagittidae",
"Oikopleuridae", "Sphenopidae", "Clausocalanidae", "Geryoniidae",
"Sapphirinidae", "Phrosinidae")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = 1:2, choix = 'var', title = '', cex = cex)
```
**Figure 3.2 - Variables factor map (PCA)**
*The labeled variables are those the best shown on the plane.*
* * *
The **dimension 1** opposes individuals such as *X017_X07_FJ8_18S_AMB*, *X10_X06_G42_18S_AMB*, *X017_X07_C24_18S_AMB*, *X017_X07_D29_18S_AMB*, *X017_X07_C25_18S_AMB* and *X07_X05_A9_18S_AMB* (to the right of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X10_X06_J49_18S_AMB*, *X10_X06_H46_18S_AMB*, *X04_X04_G44_18S_AMB* and *X10_X06_H48_18S_AMB* (to the left of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individual *X07_X05_A9_18S_AMB* stands (characterized by a positive coordinate on the axis) is sharing :
- high values for variables like *Sapphirinidae*, *Corycaeidae*, *Sphenopidae*, *Acartiidae*, *Temoridae*, *Doliolidae*, *Augaptilidae*, *Paracalanidae*, *Eupronoidae* and *Euphausiidae* (variables are sorted from the strongest).
- low values for the variables *Candaciidae*, *Subeucalanidae*, *Sagittidae*, *Sphaeronectidae*, *Hippolytidae*, *Squillidae*, *Phrosinidae*, *Clausocalanidae* and *Processidae* (variables are sorted from the weakest).
The group in which the individuals *X017_X07_FJ8_18S_AMB*, *X10_X06_G42_18S_AMB*, *X017_X07_C24_18S_AMB*, *X017_X07_D29_18S_AMB* and *X017_X07_C25_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for variables like *Geryoniidae*, *Oikopleuridae*, *Paracalanidae*, *Sagittidae*, *Augaptilidae*, *Clausocalanidae*, *Aetideidae*, *Phrosinidae*, *Halocyprididae* and *Corycaeidae* (variables are sorted from the strongest).
The group in which the individuals *X10_X06_J49_18S_AMB*, *X10_X06_H46_18S_AMB*, *X04_X04_G44_18S_AMB* and *X10_X06_H48_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for variables like *Processidae*, *Callianassidae*, *Coenobitidae*, *Squillidae*, *Centropagidae*, *Candaciidae*, *Palaemonidae*, *Creseidae*, *Sagittidae* and *Subeucalanidae* (variables are sorted from the strongest).
- low values for the variables *Augaptilidae*, *Corycaeidae*, *Doliolidae*, *Sphenopidae*, *Paracalanidae*, *Hormathiidae*, *Acartiidae* and *Euphausiidae* (variables are sorted from the weakest).
The group 4 (characterized by a negative coordinate on the axis) is sharing :
- high values for the variable *Calanidae*.
- low values for variables like *Paracalanidae*, *Sagittidae*, *Corycaeidae*, *Temoridae*, *Sapphirinidae*, *Clausocalanidae*, *Augaptilidae*, *Phrosinidae*, *Creseidae* and *Geryoniidae* (variables are sorted from the weakest).
* * *
The **dimension 2** opposes individuals such as *X017_X07_FJ8_18S_AMB*, *X10_X06_G42_18S_AMB*, *X017_X07_C24_18S_AMB*, *X017_X07_D29_18S_AMB*, *X10_X06_J49_18S_AMB*, *X017_X07_C25_18S_AMB*, *X10_X06_H46_18S_AMB*, *X04_X04_G44_18S_AMB* and *X10_X06_H48_18S_AMB* (to the top of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as ** and *X07_X05_A9_18S_AMB* (to the bottom of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individuals *X10_X06_J49_18S_AMB*, *X10_X06_H46_18S_AMB*, *X04_X04_G44_18S_AMB* and *X10_X06_H48_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for variables like *Processidae*, *Callianassidae*, *Coenobitidae*, *Squillidae*, *Centropagidae*, *Candaciidae*, *Palaemonidae*, *Creseidae*, *Sagittidae* and *Subeucalanidae* (variables are sorted from the strongest).
- low values for the variables *Augaptilidae*, *Corycaeidae*, *Doliolidae*, *Sphenopidae*, *Paracalanidae*, *Hormathiidae*, *Acartiidae* and *Euphausiidae* (variables are sorted from the weakest).
The group in which the individuals *X017_X07_FJ8_18S_AMB*, *X10_X06_G42_18S_AMB*, *X017_X07_C24_18S_AMB*, *X017_X07_D29_18S_AMB* and *X017_X07_C25_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for variables like *Geryoniidae*, *Oikopleuridae*, *Paracalanidae*, *Sagittidae*, *Augaptilidae*, *Clausocalanidae*, *Aetideidae*, *Phrosinidae*, *Halocyprididae* and *Corycaeidae* (variables are sorted from the strongest).
The group 3 (characterized by a negative coordinate on the axis) is sharing :
- high values for the variable *Calanidae*.
- low values for variables like *Paracalanidae*, *Sagittidae*, *Corycaeidae*, *Temoridae*, *Sapphirinidae*, *Clausocalanidae*, *Augaptilidae*, *Phrosinidae*, *Creseidae* and *Geryoniidae* (variables are sorted from the weakest).
The group in which the individual *X07_X05_A9_18S_AMB* stands (characterized by a negative coordinate on the axis) is sharing :
- high values for variables like *Sapphirinidae*, *Corycaeidae*, *Sphenopidae*, *Acartiidae*, *Temoridae*, *Doliolidae*, *Augaptilidae*, *Paracalanidae*, *Eupronoidae* and *Euphausiidae* (variables are sorted from the strongest).
- low values for the variables *Candaciidae*, *Subeucalanidae*, *Sagittidae*, *Sphaeronectidae*, *Hippolytidae*, *Squillidae*, *Phrosinidae*, *Clausocalanidae* and *Processidae* (variables are sorted from the weakest).
- - -
### 4. Description of the plane 3:4
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("X04_X04_G44_18S_AMB", "X10_X06_H46_18S_AMB", "X07_X05_B11_18S_AMB",
"X07_X05_A1_18S_AMB", "X017_X07_A2_18S_AMB", "X07_X05_B13_18S_AMB",
"X10_X06_J49_18S_AMB", "X04_X04_F38_18S_AMB", "X10_X06_C24_18S_AMB",
"X10_X06_A1_18S_AMB")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = c(3,4), choix = 'ind', invisible = 'quali', title = '', cex = cex)
```
**Figure 4.1 - Individuals factor map (PCA)**
*The labeled individuals are those with the higher contribution to the plane construction.*
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("Metridinidae", "Calanidae", "Aetideidae", "Euphausiidae",
"Heterorhabdidae", "Callianassidae", "Acartiidae", "Scolecitrichidae",
"Salpidae", "Coenobitidae")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = 3:4, choix = 'var', title = '', cex = cex)
```
**Figure 4.2 - Variables factor map (PCA)**
*The labeled variables are those the best shown on the plane.*
* * *
The **dimension 3** opposes individuals such as *X04_X04_G44_18S_AMB*, *X10_X06_H46_18S_AMB*, *X10_X06_J49_18S_AMB*, *X07_X05_B13_18S_AMB*, *X07_X05_B11_18S_AMB* and *X07_X05_A1_18S_AMB* (to the right of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X10_X06_C24_18S_AMB* and *X10_X06_A1_18S_AMB* (to the left of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individuals *X04_X04_G44_18S_AMB*, *X10_X06_H46_18S_AMB*, *X10_X06_J49_18S_AMB*, *X07_X05_B13_18S_AMB*, *X07_X05_B11_18S_AMB* and *X07_X05_A1_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for variables like *Coenobitidae*, *Callianassidae*, *Lycaeidae*, *Salpidae*, *Centropagidae*, *Temoridae*, *Creseidae*, *Pandalidae*, *Aequoreidae* and *Squillidae* (variables are sorted from the strongest).
- low values for the variables *Calanidae* and *Scolecitrichidae* (variables are sorted from the weakest).
The group in which the individuals *X10_X06_C24_18S_AMB* and *X10_X06_A1_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Calanidae*, *Acartiidae*, *Hippolytidae*, *Sphaeronectidae* and *Palaemonidae* (variables are sorted from the strongest).
- low values for the variables *Metridinidae*, *Euphausiidae*, *Aetideidae*, *Heterorhabdidae*, *Coenobitidae*, *Pandalidae*, *Callianassidae* and *Typhloscolecidae* (variables are sorted from the weakest).
* * *
The **dimension 4** opposes individuals such as *X017_X07_A2_18S_AMB* and *X04_X04_F38_18S_AMB* (to the top of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X10_X06_C24_18S_AMB* and *X10_X06_A1_18S_AMB* (to the bottom of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individuals *X017_X07_A2_18S_AMB* and *X04_X04_F38_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Metridinidae*, *Aetideidae*, *Euphausiidae*, *Heterorhabdidae* and *Typhloscolecidae* (variables are sorted from the strongest).
- low values for the variables *Calanidae*, *Acartiidae*, *Creseidae* and *Doliolidae* (variables are sorted from the weakest).
The group in which the individuals *X10_X06_C24_18S_AMB* and *X10_X06_A1_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Calanidae*, *Acartiidae*, *Hippolytidae*, *Sphaeronectidae* and *Palaemonidae* (variables are sorted from the strongest).
- low values for the variables *Metridinidae*, *Euphausiidae*, *Aetideidae*, *Heterorhabdidae*, *Coenobitidae*, *Pandalidae*, *Callianassidae* and *Typhloscolecidae* (variables are sorted from the weakest).
- - -
### 5. Description of the plane 5:6
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("X017_X07_Y9a_18S_AMB", "X04_X04_D28_18S_AMB", "X07_X05_A3_18S_AMB",
"X07_X05_A9_18S_AMB", "X10_X06_F38_18S_AMB", "X07_X05_A1_18S_AMB",
"X07_X05_B11_18S_AMB", "X04_X04_B14_18S_AMB", "X10_X06_H48_18S_AMB",
"X04_X04_B19_18S_AMB")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = c(5,6), choix = 'ind', invisible = 'quali', title = '', cex = cex)
```
**Figure 5.1 - Individuals factor map (PCA)**
*The labeled individuals are those with the higher contribution to the plane construction.*
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("Synaptidae", "Pyrosomatidae", "Cerianthidae", "Subeucalanidae",
"Candaciidae", "Halocyprididae", "Calanidae", "Cypraeidae", "Typhloscolecidae",
"Lysiosquillidae")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = 5:6, choix = 'var', title = '', cex = cex)
```
**Figure 5.2 - Variables factor map (PCA)**
*The labeled variables are those the best shown on the plane.*
* * *
The **dimension 5** opposes individuals such as *X017_X07_Y9a_18S_AMB*, *X04_X04_B19_18S_AMB*, *X04_X04_B14_18S_AMB*, *X07_X05_A9_18S_AMB* and *X10_X06_H48_18S_AMB* (to the right of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X04_X04_D28_18S_AMB* and *X10_X06_F38_18S_AMB* (to the left of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individuals *X017_X07_Y9a_18S_AMB*, *X04_X04_B19_18S_AMB*, *X04_X04_B14_18S_AMB*, *X07_X05_A9_18S_AMB* and *X10_X06_H48_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for variables like *Synaptidae*, *Sphenopidae*, *Corycaeidae*, *Pontellidae*, *Hippolytidae*, *Cerianthidae*, *Hormathiidae*, *Scolecitrichidae*, *Subeucalanidae* and *Squillidae* (variables are sorted from the strongest).
The group in which the individuals *X04_X04_D28_18S_AMB* and *X10_X06_F38_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Pyrosomatidae*, *Candaciidae*, *Metridinidae*, *Aetideidae*, *Acartiidae*, *Lysiosquillidae*, *Aequoreidae*, *Heterorhabdidae* and *Callianassidae* (variables are sorted from the strongest).
* * *
The **dimension 6** opposes individuals such as *X017_X07_Y9a_18S_AMB*, *X04_X04_D28_18S_AMB*, *X04_X04_B19_18S_AMB*, *X10_X06_F38_18S_AMB*, *X04_X04_B14_18S_AMB*, *X07_X05_A9_18S_AMB* and *X10_X06_H48_18S_AMB* (to the top of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X07_X05_A3_18S_AMB*, *X07_X05_A1_18S_AMB* and *X07_X05_B11_18S_AMB* (to the bottom of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individuals *X04_X04_D28_18S_AMB* and *X10_X06_F38_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Pyrosomatidae*, *Candaciidae*, *Metridinidae*, *Aetideidae*, *Acartiidae*, *Lysiosquillidae*, *Aequoreidae*, *Heterorhabdidae* and *Callianassidae* (variables are sorted from the strongest).
The group in which the individuals *X017_X07_Y9a_18S_AMB*, *X04_X04_B19_18S_AMB*, *X04_X04_B14_18S_AMB*, *X07_X05_A9_18S_AMB* and *X10_X06_H48_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for variables like *Synaptidae*, *Sphenopidae*, *Corycaeidae*, *Pontellidae*, *Hippolytidae*, *Cerianthidae*, *Hormathiidae*, *Scolecitrichidae*, *Subeucalanidae* and *Squillidae* (variables are sorted from the strongest).
The group in which the individuals *X07_X05_A3_18S_AMB*, *X07_X05_A1_18S_AMB* and *X07_X05_B11_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Typhloscolecidae* and *Halocyprididae* (variables are sorted from the strongest).
- low values for variables like *Pyrosomatidae*, *Calanidae*, *Candaciidae*, *Scolecitrichidae*, *Temoridae*, *Callianassidae*, *Sphenopidae*, *Sapphirinidae*, *Processidae* and *Coenobitidae* (variables are sorted from the weakest).
- - -
### 6. Description of the plane 7:8
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("X04_X04_F39_18S_AMB", "X017_X07_Y9a_18S_AMB", "X07_X05_A9_18S_AMB",
"X07_X05_B11_18S_AMB", "X07_X05_B13_18S_AMB", "X04_X04_B11_18S_AMB",
"X10_X06_F38_18S_AMB", "X07_X05_A3_18S_AMB", "X10_X06_C22_18S_AMB",
"X04_X04_D28_18S_AMB")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = c(7,8), choix = 'ind', invisible = 'quali', title = '', cex = cex)
```
**Figure 6.1 - Individuals factor map (PCA)**
*The labeled individuals are those with the higher contribution to the plane construction.*
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("Palinuridae", "Hippolytidae", "Pontellidae", "Doliolidae",
"Lycaeidae", "Phrosinidae", "Cerianthidae", "Sphenopidae", "Aetideidae",
"Lysiosquillidae")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = 7:8, choix = 'var', title = '', cex = cex)
```
**Figure 6.2 - Variables factor map (PCA)**
*The labeled variables are those the best shown on the plane.*
* * *
The **dimension 7** opposes individuals such as *X07_X05_B13_18S_AMB* and *X07_X05_A9_18S_AMB* (to the right of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X10_X06_C22_18S_AMB*, *X017_X07_Y9a_18S_AMB*, *X04_X04_D28_18S_AMB*, *X07_X05_B11_18S_AMB*, *X10_X06_F38_18S_AMB*, *X04_X04_B11_18S_AMB* and *X07_X05_A3_18S_AMB* (to the left of the graph, characterized by a strongly negative coordinate on the axis).
The group 1 (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Phrosinidae*, *Pontellidae* and *Eupronoidae* (variables are sorted from the strongest).
- low values for the variables *Aetideidae*, *Doliolidae*, *Sapphirinidae* and *Sphaeronectidae* (variables are sorted from the weakest).
The group in which the individuals *X07_X05_B13_18S_AMB* and *X07_X05_A9_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Lycaeidae*, *Palinuridae*, *Palaemonidae* and *Sphenopidae* (variables are sorted from the strongest).
- low values for the variables *Heterorhabdidae*, *Metridinidae* and *Geryoniidae* (variables are sorted from the weakest).
The group in which the individuals *X04_X04_D28_18S_AMB*, *X07_X05_B11_18S_AMB* and *X04_X04_B11_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Callianassidae*, *Aetideidae*, *Scombridae*, *Oikopleuridae*, *Centropagidae* and *Pyrosomatidae* (variables are sorted from the strongest).
- low values for the variables *Pontellidae*, *Lycaeidae*, *Euphausiidae* and *Processidae* (variables are sorted from the weakest).
The group in which the individuals *X10_X06_C22_18S_AMB*, *X017_X07_Y9a_18S_AMB*, *X10_X06_F38_18S_AMB* and *X07_X05_A3_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Doliolidae*, *Lysiosquillidae*, *Cerianthidae*, *Typhloscolecidae*, *Sapphirinidae*, *Metridinidae*, *Halocyprididae* and *Cypraeidae* (variables are sorted from the strongest).
* * *
The **dimension 8** opposes individuals such as *X04_X04_F39_18S_AMB*, *X07_X05_B13_18S_AMB*, *X10_X06_C22_18S_AMB*, *X017_X07_Y9a_18S_AMB*, *X07_X05_A9_18S_AMB*, *X10_X06_F38_18S_AMB* and *X07_X05_A3_18S_AMB* (to the top of the graph, characterized by a strongly positive coordinate on the axis)
to individuals characterized by a strongly negative coordinate on the axis (to the bottom of the graph).
The group in which the individuals *X10_X06_C22_18S_AMB*, *X017_X07_Y9a_18S_AMB*, *X10_X06_F38_18S_AMB* and *X07_X05_A3_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Doliolidae*, *Lysiosquillidae*, *Cerianthidae*, *Typhloscolecidae*, *Sapphirinidae*, *Metridinidae*, *Halocyprididae* and *Cypraeidae* (variables are sorted from the strongest).
The group in which the individuals *X07_X05_B13_18S_AMB* and *X07_X05_A9_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Lycaeidae*, *Palinuridae*, *Palaemonidae* and *Sphenopidae* (variables are sorted from the strongest).
- low values for the variables *Heterorhabdidae*, *Metridinidae* and *Geryoniidae* (variables are sorted from the weakest).
The group in which the individual *X04_X04_F39_18S_AMB* stands (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Hippolytidae*, *Palinuridae* and *Clausocalanidae* (variables are sorted from the strongest).
The group 4 (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Phrosinidae*, *Pontellidae* and *Eupronoidae* (variables are sorted from the strongest).
- low values for the variables *Aetideidae*, *Doliolidae*, *Sapphirinidae* and *Sphaeronectidae* (variables are sorted from the weakest).
- - -
### 7. Description of the plane 9:10
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("X04_X04_F39_18S_AMB", "X10_X06_F38_18S_AMB", "X07_X05_A3_18S_AMB",
"X07_X05_B11_18S_AMB", "X017_X07_Y9a_18S_AMB", "X07_X05_A1_18S_AMB",
"X04_X04_D30_18S_AMB", "X07_X05_A9_18S_AMB", "X04_X04_C25_18S_AMB",
"X017_X07_Y7b_18S_AMB")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = c(9,10), choix = 'ind', invisible = 'quali', title = '', cex = cex)
```
**Figure 7.1 - Individuals factor map (PCA)**
*The labeled individuals are those with the higher contribution to the plane construction.*
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("Cypraeidae", "Hippolytidae", "Halocyprididae", "Nausithoidae",
"Lysiosquillidae", "Palinuridae", "Scombridae", "Salpidae", "Sphaeronectidae",
"Acartiidae")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = 9:10, choix = 'var', title = '', cex = cex)
```
**Figure 7.2 - Variables factor map (PCA)**
*The labeled variables are those the best shown on the plane.*
* * *
The **dimension 9** opposes individuals such as *X07_X05_A3_18S_AMB*, *X017_X07_Y9a_18S_AMB*, *X07_X05_A1_18S_AMB* and *X07_X05_A9_18S_AMB* (to the right of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X04_X04_F39_18S_AMB*, *X017_X07_Y7b_18S_AMB* and *X04_X04_C25_18S_AMB* (to the left of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individual *X07_X05_A9_18S_AMB* stands (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Sphaeronectidae*, *Lysiosquillidae* and *Sphenopidae* (variables are sorted from the strongest).
- low values for the variables *Metridinidae*, *Aetideidae* and *Acartiidae* (variables are sorted from the weakest).
The group in which the individuals *X07_X05_A3_18S_AMB*, *X017_X07_Y9a_18S_AMB* and *X07_X05_A1_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Typhloscolecidae*, *Centropagidae*, *Cerianthidae*, *Subeucalanidae*, *Synaptidae*, *Doliolidae*, *Sapphirinidae*, *Nausithoidae*, *Hormathiidae* and *Creseidae* (variables are sorted from the strongest).
The group in which the individual *X04_X04_F39_18S_AMB* stands (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Hippolytidae*, *Palinuridae* and *Clausocalanidae* (variables are sorted from the strongest).
The group in which the individuals *X017_X07_Y7b_18S_AMB* and *X04_X04_C25_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Mysidae*, *Squillidae*, *Coenobitidae*, *Palaemonidae*, *Oikopleuridae*, *Paracalanidae* and *Callianassidae* (variables are sorted from the strongest).
* * *
The **dimension 10** opposes individuals such as *X10_X06_F38_18S_AMB*, *X04_X04_D30_18S_AMB*, *X07_X05_B11_18S_AMB* and *X07_X05_A9_18S_AMB* (to the top of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X07_X05_A3_18S_AMB*, *X017_X07_Y9a_18S_AMB* and *X07_X05_A1_18S_AMB* (to the bottom of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individuals *X10_X06_F38_18S_AMB*, *X04_X04_D30_18S_AMB* and *X07_X05_B11_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Pandalidae*, *Scombridae*, *Salpidae*, *Cypraeidae*, *Lysiosquillidae* and *Pyrosomatidae* (variables are sorted from the strongest).
The group in which the individual *X07_X05_A9_18S_AMB* stands (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Sphaeronectidae*, *Lysiosquillidae* and *Sphenopidae* (variables are sorted from the strongest).
- low values for the variables *Metridinidae*, *Aetideidae* and *Acartiidae* (variables are sorted from the weakest).
The group 3 (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Metridinidae*, *Acartiidae*, *Scolecitrichidae* and *Euphausiidae* (variables are sorted from the strongest).
- low values for the variables *Doliolidae*, *Sagittidae*, *Lysiosquillidae* and *Sphaeronectidae* (variables are sorted from the weakest).
The group in which the individuals *X07_X05_A3_18S_AMB*, *X017_X07_Y9a_18S_AMB* and *X07_X05_A1_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Typhloscolecidae*, *Centropagidae*, *Cerianthidae*, *Subeucalanidae*, *Synaptidae*, *Doliolidae*, *Sapphirinidae*, *Nausithoidae*, *Hormathiidae* and *Creseidae* (variables are sorted from the strongest).
- - -
### 8. Description of the dimension 11
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("X07_X05_B11_18S_AMB", "X04_X04_B11_18S_AMB", "X07_X05_A1_18S_AMB",
"X07_X05_A3_18S_AMB", "X04_X04_G44_18S_AMB", "X017_X07_C23_18S_AMB",
"X10_X06_H48_18S_AMB", "X10_X06_F38_18S_AMB", "X017_X07_Y9a_18S_AMB",
"X10_X06_E33_18S_AMB")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = c(11,12), choix = 'ind', invisible = 'quali', title = '', cex = cex)
```
**Figure 8.1 - Individuals factor map (PCA)**
*The labeled individuals are those with the higher contribution to the plane construction.*
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("Scombridae", "Salpidae", "Paleopneustina_incertae_sedis_B",
"Nausithoidae", "Clausocalanidae", "Synaptidae", "Squillidae",
"Sapphirinidae", "Processidae", "Mysidae")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.PCA(res, select = drawn, axes = 11:12, choix = 'var', title = '', cex = cex)
```
**Figure 8.2 - Variables factor map (PCA)**
*The labeled variables are those the best shown on the plane.*
* * *
The **dimension 11** opposes individuals such as *X07_X05_B11_18S_AMB*, *X07_X05_A3_18S_AMB* and *X04_X04_G44_18S_AMB* (to the right of the graph, characterized by a strongly positive coordinate on the axis)
to individuals such as *X04_X04_B11_18S_AMB*, *X07_X05_A1_18S_AMB* and *X10_X06_E33_18S_AMB* (to the left of the graph, characterized by a strongly negative coordinate on the axis).
The group in which the individuals *X07_X05_B11_18S_AMB*, *X07_X05_A3_18S_AMB* and *X04_X04_G44_18S_AMB* stand (characterized by a positive coordinate on the axis) is sharing :
- high values for the variables *Sapphirinidae*, *Squillidae*, *Palaemonidae*, *Salpidae*, *Processidae*, *Nausithoidae*, *Scombridae* and *Typhloscolecidae* (variables are sorted from the strongest).
- low values for the variable *Oikopleuridae*.
The group in which the individuals *X04_X04_B11_18S_AMB*, *X07_X05_A1_18S_AMB* and *X10_X06_E33_18S_AMB* stand (characterized by a negative coordinate on the axis) is sharing :
- high values for the variables *Geryoniidae*, *Mysidae*, *Doliolidae* and *Hormathiidae* (variables are sorted from the strongest).
- low values for the variables *Clausocalanidae*, *Corycaeidae*, *Heterorhabdidae*, *Calanidae*, *Metridinidae*, *Sapphirinidae*, *Pontellidae*, *Synaptidae* and *Scolecitrichidae* (variables are sorted from the weakest).
- - -
### 9. Classification
```{r, echo = FALSE}
res.hcpc = HCPC(res, nb.clust = -1, graph = FALSE)
```
```{r, echo = FALSE, fig.align = 'center', fig.height = 3.5, fig.width = 5.5}
drawn <-
c("X017_X07_FJ8_18S_AMB", "X017_X07_D29_18S_AMB", "X017_X07_C24_18S_AMB",
"X10_X06_G42_18S_AMB", "X10_X06_J49_18S_AMB", "X10_X06_H46_18S_AMB",
"X10_X06_H48_18S_AMB", "X04_X04_G44_18S_AMB", "X07_X05_A9_18S_AMB",
"X017_X07_C25_18S_AMB")
par(mar = c(4.1, 4.1, 1.1, 2.1))
plot.HCPC(res.hcpc, choice = 'map', draw.tree = FALSE, select = drawn, title = '')
```
**Figure 9 - Ascending Hierarchical Classification of the individuals.**
*The classification made on individuals reveals 4 clusters.*
The **cluster 1** is made of individuals such as *X04_X04_G44_18S_AMB*, *X10_X06_H46_18S_AMB*, *X10_X06_H48_18S_AMB* and *X10_X06_J49_18S_AMB*. This group is characterized by :
- variables whose values do not differ significantly from the mean.
The **cluster 2** is made of individuals sharing :
- variables whose values do not differ significantly from the mean.
The **cluster 3** is made of individuals sharing :
- variables whose values do not differ significantly from the mean.
The **cluster 4** is made of individuals such as *X017_X07_C24_18S_AMB*, *X017_X07_C25_18S_AMB*, *X017_X07_D29_18S_AMB*, *X017_X07_FJ8_18S_AMB*, *X07_X05_A9_18S_AMB* and *X10_X06_G42_18S_AMB*. This group is characterized by :
- variables whose values do not differ significantly from the mean.
- - -
## Annexes