-
Notifications
You must be signed in to change notification settings - Fork 0
/
mixOmics_multi_omics.Rmd
588 lines (454 loc) · 20.4 KB
/
mixOmics_multi_omics.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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
---
title: "mixOmics analysis of PSC patients"
author: "Ghada Nouairia, William Wu"
date: "2024-07-25"
output:
html_document:
toc: TRUE
toc_float: TRUE
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Background
The N-integration from the mixOmics package is used to integrate high-throughput miRNA-, protein-, and metabolite data. The data types are layered upon each other creating a three dimensional block. The algorithm used is block PLS-DA where block indicates the multiple data layers, PLS (partial least squares) indicates the algorithm which is similar to PCA, and DA (discriminant analysis) indicates the dependent variable as categorical.
The data is divided into a training and testing subset which will be used to create and validate the model respectively. The outcome variable is categorical. To visualise the results we will plot the grouped individuals and the relationship between the variables.
The parameters that are varied and tweaked are included in **Parameter choice**. They consist of the weight of the design matrix, the number of components, and the number of variables.
# Analysis
## Read the libraries
```{r read_libraries}
library(tidyverse)
library(mixOmics)
library(caret)
```
## Load the data
The omics data comes in a uniform format with each row representing a patient/sample and each column representing a compound/feature/variable except the first column which contains the patient ID's.
The metadata has been cleaned for the variables of interest so that they are represented by new binary columns. See the preprocessing script for details.
```{r load_data}
metabolites <- read_csv("results/metabolite_preprocessed.csv")
proteins <- read_csv("results/protein_preprocessed.csv")
miRNA <- read_csv("results/miRNA_preprocessed.csv")
metadata <- read_csv("results/metadata_preprocessed.csv")
```
## Prepare the data
We prepare the data by selecting the PSC patients (n = 33) and filtering the variables with low variance using nearZeroVar. Thereafter we split the data into a training and testing set. The latter consists of two patients with high ALP (n = 1, 2) and two patients without low ALP (n = 8, 9). The ALP limit is set to 2.85, see the metadata_preprocessing.
```{r prepare_data}
# Assigning test patients by stratification to ensure both outcomes are represented
test_sample <- c(1, 2, 8, 9)
miRNA <- miRNA[2:ncol(miRNA)] %>%
dplyr::slice(1:33)
miRNA <- miRNA[,-nearZeroVar(miRNA, uniqueCut = 30)] # cuts 1920 miRNA (mature and hairpin)
miRNA_train <- miRNA %>%
dplyr::slice(-test_sample) %>%
as.matrix
miRNA_test <- miRNA %>%
dplyr::slice(test_sample) %>%
as.matrix
proteins <- proteins[2:ncol(proteins)] %>%
dplyr::slice(1:33)
proteins_train <- proteins %>%
dplyr::slice(-test_sample) %>%
as.matrix
proteins_test <- proteins %>%
dplyr::slice(test_sample) %>%
as.matrix
metabolites <- metabolites[2:ncol(metabolites)] %>%
log2() %>%
dplyr::slice(1:33)
metabolites <- metabolites[,-nearZeroVar(metabolites, uniqueCut = 30)] # cuts 29 metabolites
metabolites_train <- metabolites %>%
dplyr::slice(-test_sample) %>%
as.matrix
metabolites_test <- metabolites %>%
dplyr::slice(test_sample) %>%
as.matrix
metadata <- metadata %>%
dplyr::slice_head(n = 33)
metadata_train <- metadata %>%
dplyr::slice(-test_sample)
metadata_test <- metadata %>%
dplyr::slice(test_sample)
# Assigning the block and outcome variable for train and test
X_train <- list(miRNA = miRNA_train,
proteins = proteins_train,
metabolites = metabolites_train)
fibrosis_train <- metadata_train$fibrosis_binary
alp_train <- metadata_train$alp_binary
bilirubin_train <- metadata_train$bilirubin_binary
X_test <- list(miRNA = miRNA_test,
proteins = proteins_test,
metabolites = metabolites_test)
fibrosis_test <- metadata_test$fibrosis_binary
alp_test <- metadata_test$alp_binary
bilirubin_test <- metadata_test$bilirubin_binary
```
## Choose parameters {.tabset}
### Design matrix
We start by investigating the pair-wise correlation between the different layers in our block using the PLS algorithm as regression analysis. These values can later be compared to the results from plotDiablo().
```{r correlation_analysis}
# miRNA x Proteins
res1.pls <- pls(X_train$miRNA, X_train$proteins, ncomp = 1)
cor(res1.pls$variates$X, res1.pls$variates$Y)
# miRNA x Metabolites
res2.pls <- pls(X_train$miRNA, X_train$metabolites, ncomp = 1)
cor(res2.pls$variates$X, res2.pls$variates$Y)
# Proteisn x Metabolites
res3.pls <- pls(X_train$proteins, X_train$metabolites, ncomp = 1)
cor(res3.pls$variates$X, res3.pls$variates$Y)
```
**Optimize**: Thereafter we create the design matrix with where a lower weight gives higher prediction accuracy while a higher weight extracts the correlation structure more precisely.
```{r create_design_matrix}
design <- matrix(0.1,
nrow = length(X_train),
ncol = length(X_train),
dimnames = list(names(X_train), names(X_train)))
diag(design) <- 0
```
### Number of components
To find the optimal number of components I create a initial model with block.plsda() and analyse it with perf(). The crossvalidation is set to leave-one-out since the sample size is small.
```{r calculate_number_of_components}
# Finding the global performance of the model without variable selection
diablo.initial <- block.plsda(X_train, fibrosis_train, ncomp = 5, design = design)
# 10-fold cross validating the model with 10 repeats
perf.diablo.initial <- perf(diablo.initial, validation = "loo", nrepeat = 10)
# Plotting the error rate
# pdf(file = "results/plots/error_rates_diablo_model.pdf")
plot(perf.diablo.initial)
# Getting the number of components according to majority vote
perf.diablo.initial$choice.ncomp$WeightedVote
# pdf(file = "results/plots/Figure_2/correlation_by_ncomp.pdf")
for (i in 1:5) {plotDiablo(diablo.initial, ncomp = i)}
```
**Optimize**: Since the outcome variable is binary the optimal number of components will usually be 1 as it is usually the number of distinct outcomes minus 1. Therefore I manually set the components to 2 which is the minimum amount needed for plotting.
```{r assign_number_of_components}
#ncomp = perf.diablo$choice.ncomp$WeightedVote["Overall.BER", "centroids.dist"]
ncomp <- 2
```
### Number of variables
To find the optimal number of variables I create a grid for the span of variables to keep for each omics which can be adjusted and optimized depending on the amount of features contained. Thereafter I analyse the data with tune.block.splsda which gives me an optimal number of variables per layer and component.
**Optimize**: The most important parameters to tweak are test.keepX (start coarse go fine) and nrepeat (generally 10-50 repeats) and the form of validation.
```{r calculate_number_of_variables}
# Selecting a range of amount of variables to keep and storing them as a list
test.keepX <- list(miRNA = c(seq(20, 80, 10)),
proteins = c(seq(20, 80, 10)),
metabolites = c(seq(20, 80, 10)))
# Tuning with loo-crossvalidation, i.e. choosing the variables to keep
start <- Sys.time()
tune.diablo <- tune.block.splsda(X_train, fibrosis_train, ncomp = ncomp,
test.keepX = test.keepX, design = design,
validation = 'loo',
BPPARAM = BiocParallel::SnowParam(workers = 16),
dist = "centroids.dist")
end <- Sys.time()
print(end - start)
list.keepX <- tune.diablo$choice.keepX
```
Here I save the results of previous calculations as they take some time to make and may vary.
```{r assign_number_of_variables}
# Fibrosis
fibrosis_list.keepX <- list(
miRNA = c(20, 50),
proteins = c(20, 20),
metabolites = c(30, 20))
# ALP
alp_list.keepX <- list(
miRNA = c(80, 20),
proteins = c(50, 20),
metabolites = c(20, 20))
# Bilirubin
bilirubin_list.keepX <- list(
miRNA = c(20, 20),
proteins = c(20, 20),
metabolites = c(20, 20))
```
## Create final model
We create the final model with the training data set and the three parameters that we have defined.
```{r create_final_model}
# Fibrosis
fibrosis_diablo <- block.splsda(X_train, fibrosis_train, keepX = fibrosis_list.keepX, ncomp = ncomp, design = design)
# ALP
alp_diablo <- block.splsda(X_train, alp_train, keepX = alp_list.keepX, ncomp = ncomp, design = design)
# Bilirubin
bilirubin_diablo <- block.splsda(X_train, bilirubin_train, keepX = bilirubin_list.keepX, ncomp = ncomp, design = design)
```
## Export model
This function exports variables, their coefficients, and their component.
```{r export_variables}
export_variables <- function(diablo) {
variables1_1 <- selectVar(diablo, block = "miRNA", comp = 1)
variables1_2 <- selectVar(diablo, block = "miRNA", comp = 2)
variables2_1 <- selectVar(diablo, block = "proteins", comp = 1)
variables2_2 <- selectVar(diablo, block = "proteins", comp = 2)
variables3_1 <- selectVar(diablo, block = "metabolites", comp = 1)
variables3_2 <- selectVar(diablo, block = "metabolites", comp = 2)
results <- rbind(
cbind(compounds = variables1_1[["miRNA"]][["name"]], contribution = variables1_1[["miRNA"]][["value"]][["value.var"]], component = variables1_1[["comp"]]),
cbind(compounds = variables1_2[["miRNA"]][["name"]], contribution = variables1_2[["miRNA"]][["value"]][["value.var"]], component = variables1_2[["comp"]]),
cbind(compounds = variables2_1[["proteins"]][["name"]], contribution = variables2_1[["proteins"]][["value"]][["value.var"]], component = variables2_1[["comp"]]),
cbind(compounds = variables2_2[["proteins"]][["name"]], contribution = variables2_2[["proteins"]][["value"]][["value.var"]], component = variables2_2[["comp"]]),
cbind(compounds = variables3_1[["metabolites"]][["name"]], contribution = variables3_1[["metabolites"]][["value"]][["value.var"]], component = variables3_1[["comp"]]),
cbind(compounds = variables3_2[["metabolites"]][["name"]], contribution = variables3_2[["metabolites"]][["value"]][["value.var"]], component = variables3_2[["comp"]])
)
results <- results %>%
as_tibble() %>%
mutate(
contribution = as.numeric(contribution),
component = as.numeric(component)
)
}
```
# Results
## Fibrosis {.tabset}
### Performance
We investigate the error rate of our final model and plot AUC. Here it can be important to choose the right type of validation and amount of folds
```{r fibrosis_analyse_performance}
pdf(file = "results/plots/Figure_5_severity/ROC_fibrosis.pdf")
perf.fibrosis_diablo <- perf(fibrosis_diablo, validation = 'loo',
nrepeat = 10, dist = 'centroids.dist')
# Performance with Majority vote
perf.fibrosis_diablo$MajorityVote.error.rate
# Performance with Weighted vote
perf.fibrosis_diablo$WeightedVote.error.rate
# AUC plot per block
for (i in c("miRNA", "proteins", "metabolites")) {
auc.fibrosis_diablo <- auroc(fibrosis_diablo, roc.block = i, roc.comp = 2,
print = FALSE)
}
```
### Prediction
We use our final model to predict the outcome for the test data set and then compare to the actual outcome.
```{r fibrosis_analyse_prediction}
predict.fibrosis_diablo <- predict(fibrosis_diablo, newdata = X_test)
confusion.mat <- get.confusion_matrix(truth = fibrosis_test,
predicted = predict.fibrosis_diablo$WeightedVote$centroids.dist[,2])
dimnames(confusion.mat) <- list(
c("low fibrosis", "high fibrosis"),
c("predicted as low fibrosis", "predicted as high fibrosis")
)
confusion.mat
get.BER(confusion.mat)
```
### Plot correlation
We plot the correlation between the layers.
```{r fibrosis_plot_correlation}
# pdf(file = "results/plots/Figure_5_severity/fibrosis_correlation.pdf")
for (i in 1:2) {
plotDiablo(fibrosis_diablo, ncomp = i)
}
```
### Plot individuals
```{r fibrosis_plot_individuals}
# pdf(file = "results/plots/Figure_5_severity/fibrosis_diablo_blocks_network.pdf")
plotIndiv(fibrosis_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2')
plotIndiv(fibrosis_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2', block = "average")
plotIndiv(fibrosis_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2', block = "weighted.average")
# Arrow plot
plotArrow(fibrosis_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2')
```
### Plot variables
```{r fibrosis_plot_variables}
# pdf(file = "results/plots/Figure_5_severity/fibrosis_variables_barplot.pdf")
plotVar(fibrosis_diablo, var.names = FALSE, style = 'graphics', legend = TRUE,
pch = c(16, 17, 15), cex = c(2,2,2),
col = c('#377EB8', '#E7298A', '#1B9E77'),
title = 'Multiomics analysis in relation to fibrosis level')
# pdf(file = "results/plots/Figure_5_severity/fibrosis_loadings.pdf")
for (i in 1:2) {plotLoadings(fibrosis_diablo, comp = i, contrib = 'max', method = 'median')}
# pdf(file = "results/plots/Figure_5_severity/fibrosis_circos_plot.pdf")
circosPlot(fibrosis_diablo, cutoff = 0.7, line = TRUE,
color.blocks = c('#377EB8', '#E7298A', '#1B9E77'),
color.cor = c("#D95F02","#984EA3"), size.labels = 1.5)
# Network
# pdf("results/plots/Figure_5_severity/fibrosis_network1.pdf") # Create a PNG file with specified dimensions
network(fibrosis_diablo, blocks = c(1,2,3),
cutoff = 0.7,
color.node = c('#377EB8', '#E7298A', '#1B9E77'))
# Clustered image map
# pdf("results/plots/Figure_5_severity/fibrosis_clustered_map.pdf")
cimDiablo(fibrosis_diablo, color.blocks = c('#377EB8', '#E7298A', '#1B9E77'),
comp = 1, margin=c(8,20), legend.position = "right")
```
### Export variables
We export a table with all compounds used in the model with columns representing compound name, coefficient, and component.
```{r fibrosis_export}
variables <- export_variables(fibrosis_diablo)
# Save the data as .csv
write_csv(variables, "results/mixOmics_fibrosis_variables.csv")
```
## ALP {.tabset}
### Performance
We investigate the error rate of our final model and plot AUC. Here it can be important to choose the right type of validation and amount of folds
```{r alp_analyse_performance}
perf.alp_diablo <- perf(alp_diablo, validation = 'loo',
nrepeat = 10, dist = 'centroids.dist')
# Performance with Majority vote
perf.alp_diablo$MajorityVote.error.rate
# Performance with Weighted vote
perf.alp_diablo$WeightedVote.error.rate
# AUC plot per block
for (i in c("miRNA", "proteins", "metabolites")) {
auc.alp_diablo <- auroc(alp_diablo, roc.block = i, roc.comp = 2,
print = FALSE)
}
```
### Prediction
We use our final model to predict the outcome for the test data set and then compare to the actual outcome.
```{r alp_analyse_prediction}
predict.alp_diablo <- predict(alp_diablo, newdata = X_test)
confusion.mat <- get.confusion_matrix(truth = alp_test,
predicted = predict.alp_diablo$WeightedVote$centroids.dist[,2])
dimnames(confusion.mat) <- list(
c("low alp", "high alp"),
c("predicted as low alp", "predicted as high alp")
)
confusion.mat
get.BER(confusion.mat)
```
### Plot correlation
We plot the correlation between the layers.
```{r alp_plot_correlation}
for (i in 1:2) {
plotDiablo(alp_diablo, ncomp = i)
}
```
### Plot individuals
```{r alp_plot_individuals}
# Individual plot
plotIndiv(alp_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2')
plotIndiv(alp_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2', block = "average")
plotIndiv(alp_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2', block = "weighted.average")
# Arrow plot
plotArrow(alp_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2')
```
### Plot variables
```{r alp_plot_variables}
# Variable plot
plotVar(alp_diablo, var.names = FALSE, style = 'graphics', legend = TRUE,
pch = c(16, 17, 15), cex = c(2,2,2),
col = c('darkorchid', 'brown1', 'lightgreen'),
title = 'DIABLO comp 1 - 2')
# Loadings
for (i in 1:2) {
plotLoadings(alp_diablo, comp = i, contrib = 'max', method = 'median')
}
# Circos plot
circosPlot(alp_diablo, cutoff = 0.7, line = TRUE,
color.blocks = c('darkorchid', 'brown1', 'lightgreen'),
color.cor = c("chocolate3","grey20"), size.labels = 1.5)
# # Network
# X11() # Opens a new window
# network(alp_diablo, blocks = c(1,2,3),
# cutoff = 0.4,
# color.node = c('darkorchid', 'brown1', 'lightgreen'),
# # To save the plot, uncomment below line
# #save = 'png', name.save = 'diablo-network'
# )
# # Clustered image map
# quartz() # Opens a new window
# cimDiablo(alp_diablo, color.blocks = c('darkorchid', 'brown1', 'lightgreen'),
# comp = 1, margin=c(8,20), legend.position = "right",
# save = 'png', name.save = 'alp_cim')
```
### Export variables
We export a table with all compounds used in the model with columns representing compound name, coefficient, and component.
```{r alp_export}
variables <- export_variables(alp_diablo)
# Save the data as .csv
setwd("~/R/FoLäk2")
write_csv(variables, "results/mixOmics/mixOmics_alp_binary.csv")
```
## Bilirubin {.tabset}
### Performance
We investigate the error rate of our final model and plot AUC. Here it can be important to choose the right type of validation and amount of folds
```{r bilirubin_analyse_performance}
perf.bilirubin_diablo <- perf(bilirubin_diablo, validation = 'loo',
nrepeat = 10, dist = 'centroids.dist')
# Performance with Majority vote
perf.bilirubin_diablo$MajorityVote.error.rate
# Performance with Weighted vote
perf.bilirubin_diablo$WeightedVote.error.rate
# AUC plot per block
for (i in c("miRNA", "proteins", "metabolites")) {
auc.bilirubin_diablo <- auroc(bilirubin_diablo, roc.block = i, roc.comp = 2,
print = FALSE)
}
```
### Prediction
We use our final model to predict the outcome for the test data set and then compare to the actual outcome.
```{r bilirubin_analyse_prediction}
predict.bilirubin_diablo <- predict(bilirubin_diablo, newdata = X_test)
confusion.mat <- get.confusion_matrix(truth = bilirubin_test,
predicted = predict.bilirubin_diablo$WeightedVote$centroids.dist[,2])
dimnames(confusion.mat) <- list(
c("low bilirubin", "high bilirubin"),
c("predicted as low bilirubin", "predicted as high bilirubin")
)
confusion.mat
get.BER(confusion.mat)
```
### Plot correlation
We plot the correlation between the layers.
```{r bilirubin_plot_correlation}
for (i in 1:2) {
plotDiablo(bilirubin_diablo, ncomp = i)
}
```
### Plot individuals
```{r bilirubin_plot_individuals}
# Individual plot
plotIndiv(bilirubin_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2')
plotIndiv(bilirubin_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2', block = "average")
plotIndiv(bilirubin_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2', block = "weighted.average")
# Arrow plot
plotArrow(bilirubin_diablo, ind.names = FALSE, legend = TRUE,
title = 'DIABLO comp 1 - 2')
```
### Plot variables
```{r bilirubin_plot_variables}
# Variable plot
plotVar(bilirubin_diablo, var.names = FALSE, style = 'graphics', legend = TRUE,
pch = c(16, 17, 15), cex = c(2,2,2),
col = c('darkorchid', 'brown1', 'lightgreen'),
title = 'TCGA, DIABLO comp 1 - 2')
# Loadings
for (i in 1:2) {
plotLoadings(bilirubin_diablo, comp = i, contrib = 'max', method = 'median')
}
# Circos plot
circosPlot(bilirubin_diablo, cutoff = 0.7, line = TRUE,
color.blocks = c('darkorchid', 'brown1', 'lightgreen'),
color.cor = c("chocolate3","grey20"), size.labels = 1.5)
# # Network
# X11() # Opens a new window
# network(bilirubin_diablo, blocks = c(1,2,3),
# cutoff = 0.4,
# color.node = c('darkorchid', 'brown1', 'lightgreen'),
# # To save the plot, uncomment below line
# save = 'png', name.save = 'diablo-network'
# )
# # Clustered image map
# quartz() # Opens a new window
# cimDiablo(bilirubin_diablo, color.blocks = c('darkorchid', 'brown1', 'lightgreen'),
# comp = 1, margin=c(8,20), legend.position = "right",
# save = 'png', name.save = 'bilirubin_cim')
```
### Export variables
We export a table with all compounds used in the model with columns representing compound name, coefficient, and component.
```{r bilirubin_export}
variables <- export_variables(bilirubin_diablo)
# Save the data as .csv
setwd("~/R/FoLäk2")
write_csv(variables, "results/mixOmics/mixOmics_bilirubin_binary.csv")
```
# Conclusion