-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalysis_RR.Rmd
More file actions
1274 lines (1047 loc) · 41.4 KB
/
Analysis_RR.Rmd
File metadata and controls
1274 lines (1047 loc) · 41.4 KB
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
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Antelope Project Analysis"
author: "Andrea Stocco"
date: "April 29, 2020"
output:
html_document:
code_folding: hide
theme: yeti
toc: yes
toc_depth: 3
toc_float: yes
pdf_document:
toc: yes
toc_depth: '3'
word_document:
toc: yes
toc_depth: '3'
---
```{r setup, include=FALSE, warning=FALSE}
library(tidyverse)
library(kableExtra)
library(xtable)
library(data.table)
library(ggplot2)
library(ggthemes)
library(ggExtra)
library(colorspace)
library(RColorBrewer)
library(gridExtra)
library(ggdendro)
library(viridis)
library(robcor)
source("./code/QEEG_Emotiv_Analysis_Rscript.R")
knitr::opts_chunk$set(echo = TRUE)
```
# Behavioral Data
## Demographics
First, let's load the data and transform it into a Wide format table
```{r}
behav <- read_tsv("data/behav/behav_data.txt",
col_types=cols())
behav$material[behav$material=="Swahili"] <- "Vocabulary"
behav$material[behav$material=="US Maps"] <- "Maps"
behav <- behav %>% rename(Gender = gender, Age = age)
wbehav <- behav %>% pivot_wider(values_from = alpha,
id_cols = c(Subject, Gender, Age),
names_from = material)
```
At this point, we can look at the participant demographocs
```{r}
ggplot(data=wbehav, aes(x=Age, col=Gender)) +
geom_histogram(aes(col="white", fill=Gender),
colour="white", alpha=0.5,
position="identity", binwidth = 1) +
scale_color_brewer(palette = "Set1") +
scale_fill_brewer(palette = "Set1") +
ggtitle("Age Distribution by Gender") +
theme_pander()
```
## Rate of Forgetting (Alpha parameter) for the two tasks
We can now examine the distribution and correlation of the rate of forgetting
for the verbal (Vocabulary) and Maps:
```{r}
mu <- behav %>%
group_by(material) %>%
summarize(alpha=mean(alpha))
p1 <- ggplot(behav, aes(x=alpha, fill=material)) +
geom_histogram(col="white", binwidth = 0.025,
alpha=0.5, position="identity") +
scale_color_brewer(palette = "Dark2") +
scale_fill_brewer(palette = "Dark2") +
geom_vline(data=mu, aes(xintercept=alpha, color=material),
linetype="dashed") +
xlab(expression(paste("Estimated value of ", alpha))) +
theme_pander() +
ylab("Count") +
ggtitle("(A) Distribution By Materials") +
theme(legend.position = c(0.2, 0.8)) +
theme(plot.title = element_text(hjust = 0.5))
p2 <- ggplot(wbehav, aes(x=Vocabulary, y=Maps)) +
geom_point(size=4, alpha=0.5, col="black") + #col=K[7]) +
geom_smooth(method = "lm", formula = y ~ x,
col="red", fill="red", fullrange = T, lwd=2) +
theme_pander() +
scale_x_continuous() +
scale_y_continuous() +
ggtitle("(B) Correlation Across Materials") +
xlab(expression(paste(alpha, " Vocabulary"))) +
ylab(expression(paste(alpha, " Maps"))) +
geom_rug(col="black", lwd=1, alpha=.5) +
annotate("segment", x=0.1, y=0.1, xend=0.5,
yend=0.5, col="grey", lwd=1, lty=2) +
theme(plot.title = element_text(hjust = 0.5))
grid.arrange(p1, p2, ncol=2)
```
```{r fig.width=5, fig.height=5 }
p3 <- ggplot(wbehav, aes(x=Vocabulary, y=Maps)) +
geom_point(size=4, alpha=0.5, col="black") + #col=K[7]) +
geom_smooth(method = "lm", formula = y ~ x, col="red",
fill="red", fullrange = T, lwd=2) +
theme_pander() +
scale_x_continuous() +
scale_y_continuous() +
coord_fixed() +
ggtitle("Correlation of Alpha Parameters\nAcross Materials") +
xlab(expression(paste(alpha, " Vocabulary"))) +
ylab(expression(paste(alpha, " Maps"))) +
annotate("segment", x=0.1, y=0.1, xend=0.5,
yend=0.5, col="grey", lwd=1, lty=2) +
annotate("text", label = paste("R =", round(cor(wbehav$Vocabulary,
wbehav$Maps),
2)),
x=0.2, y=0.45, col="red") +
theme(plot.title = element_text(hjust = 0.5))
ggMarginal(p3, col="white", fill="black", alpha=0.5,
type="hist", bins=13)
```
And here is a summary of the data:
```{r}
summary(wbehav) %>%
xtable() %>%
kable(digits = 3) %>%
kable_styling(bootstrap_options = c("striped", "hover"))
```
# Eyes-Closed EEG Data
Now we look at the neural correlates of the rates of forgetting in EEG data. We
begin with _eyes closed_ EEG data, which is the most common type of
resting-state EEG recording.
## (Optional) Preprocess the Data
Set the `process_raw` variable to `TRUE` to reprocess the raw EEG data.
That might take a __very__ long time.
```{r}
process_raw = F
if (process_raw) {
setwd("./data/eyes_closed/")
for (sub in dir(grep("A[1-9]", dir()))) {
setwd(sub)
analyze.logfile(sub, "closed")
setwd("..")
}
setwd("../..")
}
```
## Load the Eyes-Closed Spectra and Summary Files
The preprocessing step produces a number of text files. Here, we are interested
in the _summary_ file, which contains many useful statistics, including the
Individual Alpha Frequency (i.e., the Alpha Peak) for each channel, the
_spectra_ file, which contains the estimated log power for each channel in
increments of 0.5 Hz.
```{r}
ec_spectra <- NULL
for (sub in dir("data/eyes_closed/")[grep("A[1-9]",
dir("data/eyes_closed/"))]) {
table <- read_tsv(paste("data/eyes_closed/", sub, "/",
sub, "_closed_spectra.txt", sep=""),
col_types = cols())
if (is.null(ec_spectra)) {
ec_spectra <- table
} else {
ec_spectra <- ec_spectra %>% bind_rows(table)
}
}
ec_summary <- NULL
for (sub in dir("data/eyes_closed/")[grep("A[1-9]",
dir("data/eyes_closed/"))]) {
table <- read_tsv(paste("data/eyes_closed/", sub, "/",
sub, "_closed_summary.txt", sep=""),
col_types = cols())
if (is.null(ec_summary)) {
ec_summary <- table
} else {
ec_summary <- ec_summary %>% bind_rows(table)
}
}
```
### Individual Alpha frquency
The IAF is perhaps the most important subject level characteristic of the
resting state spectrum. For this reason, we want to get some basic statistics.
First, we calculate the subject-level IAF by computing the mode IAF across all
channels for a given participant.
```{r}
iaf_cols <- paste(c("AF3", "AF4", "F3", "F4",
"F7", "F8", "FC5", "FC6",
"T7", "T8", "P7", "P8",
"O1", "O2"),
"IAF",
sep="_")
ec_iafs <- ec_summary %>%
select(c("Subject", iaf_cols)) %>%
filter(Subject %in% wbehav$Subject) %>%
pivot_longer(cols = iaf_cols, names_sep="_",
names_to = c("Channel", "Discard"),
values_to = "IAF_EC") %>%
select(Subject, Channel, IAF_EC) %>%
group_by(Subject) %>%
summarize(IAF_EC = Mode(IAF_EC))
```
The mean IAF thus calculated is ```r round(mean(ec_iafs$IAF_EC),2)```, which is
exactly in the middle of our alpha frequency band.
```{r, fig.width=5, fig.height=5}
ggplot(data=ec_iafs, aes(x = IAF_EC)) +
geom_histogram(aes(col="white"), fill="black",
colour="white", alpha=0.5,
position="identity", binwidth = 0.5) +
ggtitle("IAF Distribution, Eyes Closed") +
xlab("IAF (Eyes Closed)") +
theme_pander()
```
### Average Spectrum
First, let's examine the spectrograms for each channel to make sure it looks
normal and the IAF (individual alpha frequency) is reasonable, i.e., the same
for each channel and roughly in the middle of the band definition
```{r fig.width=6, fig.height=6}
l_ec_spectra <- pivot_longer(ec_spectra, cols=names(ec_spectra)[3:130],
names_to="Freq")
l_ec_spectra <- l_ec_spectra %>%
rename(Power = value) %>%
add_column(Recording = "Eyes Closed")
l_ec_spectra$Frequency <- as.numeric(substr(l_ec_spectra$Freq,
0, str_length(l_ec_spectra$Freq) -2))
l_ec_spectra <- l_ec_spectra %>%
add_column(Band="Delta", BandMin=0, BandMax=4)
l_ec_spectra$Band[l_ec_spectra$Frequency <= 40] <- "Gamma"
l_ec_spectra$Band[l_ec_spectra$Frequency < 30] <- "High Beta"
l_ec_spectra$Band[l_ec_spectra$Frequency < 18] <- "Upper Beta"
l_ec_spectra$Band[l_ec_spectra$Frequency < 15] <- "Low Beta"
l_ec_spectra$Band[l_ec_spectra$Frequency < 13] <- "Alpha"
l_ec_spectra$Band[l_ec_spectra$Frequency < 8] <- "Theta"
l_ec_spectra$Band[l_ec_spectra$Frequency < 4] <- "Delta"
l_ec_spectra$BandMin[l_ec_spectra$Frequency <= 40] <- 30
l_ec_spectra$BandMin[l_ec_spectra$Frequency < 30] <- 18
l_ec_spectra$BandMin[l_ec_spectra$Frequency < 18] <- 15
l_ec_spectra$BandMin[l_ec_spectra$Frequency < 15] <- 13
l_ec_spectra$BandMin[l_ec_spectra$Frequency < 13] <- 8
l_ec_spectra$BandMin[l_ec_spectra$Frequency < 8] <- 4
l_ec_spectra$BandMin[l_ec_spectra$Frequency < 4] <- 0
l_ec_spectra$BandMax[l_ec_spectra$Frequency <= 40] <- 40
l_ec_spectra$BandMax[l_ec_spectra$Frequency < 30] <- 30
l_ec_spectra$BandMax[l_ec_spectra$Frequency < 18] <- 18
l_ec_spectra$BandMax[l_ec_spectra$Frequency < 15] <- 15
l_ec_spectra$BandMax[l_ec_spectra$Frequency < 13] <- 13
l_ec_spectra$BandMax[l_ec_spectra$Frequency < 8] <- 8
l_ec_spectra$BandMax[l_ec_spectra$Frequency < 4] <- 4
l_ec_spectra$Band <- factor(l_ec_spectra$Band,
levels = c("Delta", "Theta", "Alpha",
"Low Beta", "Upper Beta",
"High Beta", "Gamma"))
```
Now, we remove the three participants for which we have poor quality data
```{r}
l_ec_spectra <- l_ec_spectra %>%
filter(Subject %in% behav$Subject)
```
We can visualize the power spectra to ensure that our data looks normal
```{r}
gd <- l_ec_spectra %>%
group_by(Band) %>%
summarise(
Min = mean(BandMin),
Max = mean(BandMax),
Power =mean(Power),
Frequency = mean(BandMin)
#Channel=
)
ggplot(data=l_ec_spectra, aes(x=Frequency, y=Power, Channel)) +
geom_rect(data = gd, aes(xmin = Min, xmax = Max, fill = Band),
ymin=0, ymax=Inf, colour=NA, alpha=0.5) +
stat_summary(fun.data=mean_sdl,
geom = "ribbon", colour = "white", alpha = 0.4) +
stat_summary(fun = mean, geom = "line", lwd = 1) +
facet_wrap(~ Channel, ncol=4) +
scale_alpha_manual(values = seq(0.1, 0.9, 0.1)) +
ggtitle("Eyes-Closed Power Spectrum Across Channels") +
ylab("Log Power") +
xlab("Frequency (Hz)") +
theme_pander() +
coord_cartesian(xlim=c(1,40), ylim=c(5, 17)) + #ylim=c(5,17)) +
scale_fill_brewer(palette = "Set3") +
theme(plot.title = element_text(hjust = 0.5))
```
Now, let's create a mean spectrogram with annotations that mark the different
frequency bands. It serves as a visual reference that our data is not grossly
out of whack.
```{r fig.width=6, fig.height=3}
#K = brewer.pal(7, "Set3")
d3pal <- pal_jco()
K = d3pal(7)
al_ec_spectra <- aggregate(l_ec_spectra[c("Power")],
list(Subject = l_ec_spectra$Subject,
Frequency = l_ec_spectra$Frequency,
Band = l_ec_spectra$Band),
mean)
ggplot(data=al_ec_spectra, aes(x=Frequency, y=Power, col=Power)) +
annotate("rect", xmin = 0, xmax = 4, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[1]) +
annotate("rect", xmin = 4, xmax = 8, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[2]) +
annotate("rect", xmin = 8, xmax = 13, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[3]) +
annotate("rect", xmin = 13, xmax = 15, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[4]) +
annotate("rect", xmin = 15, xmax = 18, ymin = 0, ymax = Inf,
alpha = 0.5, fill = K[5]) +
annotate("rect", xmin = 18, xmax = 30, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[6]) +
annotate("rect", xmin = 30, xmax = 40, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[7]) +
stat_summary(fun.data = mean_sdl, geom = "ribbon",
alpha = 0.5, fill = "grey50", col = "white") +
stat_summary(fun=mean, geom="line", lwd=2) +
coord_cartesian(xlim=c(0,40), ylim=c(5,18)) +
xlab("Frequency (Hz)") +
theme_pander() +
annotate("text", x=2, y=5, label="Delta", angle=90, hjust=0) +
annotate("text", x=6, y=5, label="Theta", angle=90, hjust=0) +
annotate("text", x=10.5, y=5, label="Alpha", angle=90, hjust=0) +
annotate("text", x=14, y=5, label="Low Beta", angle=90, hjust=0) +
annotate("text", x=16.5, y=5, label="Upper Beta", angle=90, hjust=0) +
annotate("text", x=24, y=5, label="High Beta", angle=90, hjust=0) +
annotate("text", x=35, y=5, label="Gamma", angle=90, hjust=0)
```
## Correlations with Rate of Forgetting
Having ensured that our EEG recordings look normal, reflect known
neurophysiological characteristics, and that our frequency bands boundaries
are reasonable, we can proceed with correlating the rates of forgetting with
resting state QEEG characteristics.
First, we calculate the mean power for every band and channel, remove
participants who were not included in the behavioral tests, and correct for
multiple comparisons by frequency band:
```{r}
r2p <- function(r, n) {
df = n - 2
t = (r * sqrt(df)) / sqrt(1 - r**2)
2 * pt(-abs(t), df = df)
}
wbehav <- wbehav %>%
mutate(GlobalAlpha=(Vocabulary + Maps)/2)
Adata_ec <- l_ec_spectra %>%
group_by(Subject, Channel, Band, Recording) %>%
summarize(Power=mean(Power))
Fdata_ec <- inner_join(Adata_ec, behav, by="Subject")
Rdata_ec <- Fdata_ec %>%
group_by(material, Channel, Band, Recording) %>%
summarise(r = cor(Power, alpha),
rob_r =robcor(Power, alpha, method="ssd"),
p = cor.test(Power, alpha)$p.value)
Rdata_ec <- Rdata_ec %>%
group_by(material, Band, Recording) %>%
mutate(q = p.adjust(p, method="BH"),
rob_p = r2p(rob_r, n=50)) %>%
mutate(rob_q = p.adjust(rob_p, method="BH"))
```
Here is the full table of statistics:
```{r}
write_csv(Rdata_ec, "correlations_channel_band_eyes_closed.csv", col_names = T)
Rdata_ec %>%
xtable() %>%
kable(digits = 3) %>%
kable_styling(bootstrap_options = c("striped", "hover"))
```
And here is the corresponding distributions of _r_ and _p_ values.
The dashed lines correspond to a significant threshold of _p_ < .05 on
either a _r_ or a _p_-value scale.
```{r}
ggplot(Rdata_ec, aes(x = Band, y = r, col = Channel)) +
geom_point() +
stat_summary(fun.data = "mean_se", col="black",
alpha=0.5, geom = "errorbar") +
facet_wrap(~ material) +
ggtitle("Correlation by Frequency Band") +
ylab("r value") +
annotate("segment", x=-Inf, xend=Inf, y=0.28, yend = 0.28, lty=2) +
annotate("segment", x=-Inf, xend=Inf, y=-0.28, yend = -0.28, lty=2) +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
theme_pander()
ggplot(Rdata_ec, aes(x = Band, y = p, col = Channel)) +
geom_point() +
stat_summary(fun.data = "mean_se", col="black", alpha=0.5, geom = "errorbar") +
ggtitle("p-value, by Band") +
ylab("p value") +
facet_wrap(~ material) +
annotate("segment", x=-Inf, xend=Inf, y=0.05, yend = 0.05, lty=2) +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
scale_y_log10() +
theme_pander()
```
From the original list, we can extract only those channels that survive
the FDR correction:
```{r}
survivors <- Rdata_ec %>%
filter(rob_q < 0.05 | q < 0.05)
survivors %>%
xtable() %>%
kable(digits = 3) %>%
kable_styling(bootstrap_options = c("striped", "hover"))
```
Only one channel P8, in one frequency band (low beta) survives FDR correction.
We can plot the correlation between power in P8 and rate of forgetting to see
the relationship:
```{r fig.width=5, fig.height=5 }
focus <- Fdata_ec %>%
filter(material == "Vocabulary",
Channel %in% survivors$Channel,
Band == "Low Beta") %>%
rename(Alpha = alpha)
p <- ggplot(focus, aes(x = Alpha, y = Power)) +
geom_point(size = 4, alpha = 0.5, col = "black") +
geom_smooth(method = "lm", formula = y ~ x,
col="red", fill="red", fullrange = T, lwd=2) +
theme_pander() +
scale_x_continuous() +
scale_y_continuous() +
ggtitle("Rate of Forgetting\nand Eyes-Closed Beta Power") +
xlab(expression(paste(alpha, " Vocabulary"))) +
ylab("Low Beta (13-15 Hz) Power Over P8") +
geom_text(data=survivors, col="red",
mapping=aes(x=0.25, y=10.5,
label= paste("r =", round(r, 2)))) +
theme(plot.title = element_text(hjust = 0.5))
ggMarginal(p, col = "white", fill = "black", alpha = 0.5,
type = "hist", bins = 13)
```
# Eyes-Open EEG Data
## (Optional) Preprocess the Data
Set the `process_raw` variable to `TRUE` to reprocess the raw EEG data.
That might take a __very__ long time.
```{r}
process_raw = F
if (process_raw) {
setwd("eyes_open/")
for (sub in dir(grep("A[1-9]", dir()))) {
setwd(sub)
analyze.logfile(sub, "open")
setwd("..")
}
setwd("..")
}
```
## Load the Eyes-Open Spectra and Summary Files
As in the case of eyes-closed data, we are going to examine the spectral and
IAF characteristics of eyes-open recordings though the _summary_ files produced
by preprocessing.
```{r}
eo_spectra <- NULL
for (sub in dir("data/eyes_open/")[grep("A[1-9]",
dir("data/eyes_open/"))]) {
table <- read_tsv(paste("data/eyes_open/", sub, "/",
sub, "_open_spectra.txt", sep=""),
col_types = cols())
if (is.null(eo_spectra)) {
eo_spectra <- table
} else {
eo_spectra <- eo_spectra %>% bind_rows(table)
}
}
eo_summary <- NULL
for (sub in dir("data/eyes_open/")[grep("A[1-9]",
dir("data/eyes_open/"))]) {
table <- read_tsv(paste("data/eyes_open/", sub, "/",
sub, "_open_summary.txt", sep=""),
col_types = cols())
if (is.null(eo_summary)) {
eo_summary <- table
} else {
eo_summary <- eo_summary %>% bind_rows(table)
}
}
```
### Individual Alpha frquency
Since eyes-open recordings are somewhat less common, we need to run a few sanity
checks on them. The first and most obsvious concerns the IAF, and whether the
IAFs during eyes-open recordings are similar and correlated to those observed
during eyes-closed sessions.
```{r}
eo_iafs <- eo_summary %>%
select(c("Subject", iaf_cols)) %>%
filter(Subject %in% wbehav$Subject) %>%
pivot_longer(cols = iaf_cols, names_sep="_",
names_to = c("Channel", "Discard"),
values_to = "IAF_EO") %>%
select(Subject, Channel, IAF_EO) %>%
group_by(Subject) %>%
summarize(IAF_EO = Mode(IAF_EO))
iafs <- inner_join(eo_iafs, ec_iafs, by="Subject")
```
The mean IAF thus calculated is ```r round(mean(eo_iafs$IAF_EO),2)```, which is,
once more, exactly in the middle of our alpha frequency band.
```{r, fig.width=5, fig.height=5}
ggplot(data=eo_iafs, aes(x = IAF_EO)) +
geom_histogram(aes(col="white"), fill="black",
colour="white", alpha=0.5,
position="identity", binwidth = 0.5) +
ggtitle("IAF Distribution, Eyes-Open") +
xlab("IAF (Eyes Open)") +
theme_pander()
```
As it can be seen, there is a significant correlation in the IAFs between the
two recordings (_p_ = ```r round(cor.test(iafs$IAF_EO, iafs$IAF_EC)$p.value, 6)```).
Between recordings, the individual IAF remains the
same +/- ```r round(sd(iafs$IAF_EO - iafs$IAF_EC), 2)```.
```{r fig.width=6, fig.height=5}
iafplot <- ggplot(iafs, aes(x=IAF_EO, y=IAF_EC)) +
geom_count(alpha=0.5, col="black") +
scale_size_area() +
geom_smooth(method = "lm", formula = y ~ x,
col="red", fill="red", fullrange = T, lwd=2) +
xlab("IAF Eyes Open (Hz)") +
ylab("IAF Eyes Closed (Hz") +
geom_text(data = summarize(iafs, Mean=mean(IAF_EC)), # Avoid label overlaps
x= 9.5, y=11.5,
col="red",
label=paste("r =",
round(cor(iafs$IAF_EC, iafs$IAF_EO), 2))) +
ggtitle("IAF Across Recordings") +
theme_pander()
iafplot
```
### Average Spectrum
We can also investigate whether the average spectrum is comparable to that of
eyes-closed recordings. To do so, we will calculate the average spectrum across
channels, much in the same ways as it was done for eyes-closed data:
```{r}
l_eo_spectra <- pivot_longer(eo_spectra, cols=names(ec_spectra)[3:130],
names_to="Freq")
l_eo_spectra <- l_eo_spectra %>%
rename(Power = value) %>%
add_column(Recording = "Eyes Open")
l_eo_spectra$Frequency <- as.numeric(substr(l_eo_spectra$Freq,
0, str_length(l_eo_spectra$Freq) -2))
l_eo_spectra <- l_eo_spectra %>%
add_column(Band="Delta", BandMin=0, BandMax=4)
l_eo_spectra$Band[l_eo_spectra$Frequency <= 40] <- "Gamma"
l_eo_spectra$Band[l_eo_spectra$Frequency < 30] <- "High Beta"
l_eo_spectra$Band[l_eo_spectra$Frequency < 18] <- "Upper Beta"
l_eo_spectra$Band[l_eo_spectra$Frequency < 15] <- "Low Beta"
l_eo_spectra$Band[l_eo_spectra$Frequency < 13] <- "Alpha"
l_eo_spectra$Band[l_eo_spectra$Frequency < 8] <- "Theta"
l_eo_spectra$Band[l_eo_spectra$Frequency < 4] <- "Delta"
l_eo_spectra$BandMin[l_eo_spectra$Frequency <= 40] <- 30
l_eo_spectra$BandMin[l_eo_spectra$Frequency < 30] <- 18
l_eo_spectra$BandMin[l_eo_spectra$Frequency < 18] <- 15
l_eo_spectra$BandMin[l_eo_spectra$Frequency < 15] <- 13
l_eo_spectra$BandMin[l_eo_spectra$Frequency < 13] <- 8
l_eo_spectra$BandMin[l_eo_spectra$Frequency < 8] <- 4
l_eo_spectra$BandMin[l_eo_spectra$Frequency < 4] <- 0
l_eo_spectra$BandMax[l_eo_spectra$Frequency <= 40] <- 40
l_eo_spectra$BandMax[l_eo_spectra$Frequency < 30] <- 30
l_eo_spectra$BandMax[l_eo_spectra$Frequency < 18] <- 18
l_eo_spectra$BandMax[l_eo_spectra$Frequency < 15] <- 15
l_eo_spectra$BandMax[l_eo_spectra$Frequency < 13] <- 13
l_eo_spectra$BandMax[l_eo_spectra$Frequency < 8] <- 8
l_eo_spectra$BandMax[l_eo_spectra$Frequency < 4] <- 4
l_eo_spectra$Band <- factor(l_eo_spectra$Band,
levels = c("Delta", "Theta", "Alpha",
"Low Beta", "Upper Beta",
"High Beta", "Gamma"))
```
Now, we remove the three participants for which we have poor quality data
```{r}
l_eo_spectra <- l_eo_spectra %>%
filter(Subject %in% behav$Subject)
```
And we can visualize the eyes-open power spectra by channel:
```{r}
gd <- l_eo_spectra %>%
group_by(Band) %>%
summarise(
Min = mean(BandMin),
Max = mean(BandMax),
Power =mean(Power),
Frequency = mean(BandMin)
)
ggplot(data=l_eo_spectra, aes(x=Frequency, y=Power, Channel)) +
geom_rect(data = gd, aes(xmin = Min, xmax = Max, fill = Band),
ymin=0, ymax=Inf, colour=NA, alpha=0.5) +
stat_summary(fun.data=mean_sdl,
geom = "ribbon", colour = "white", alpha = 0.4) +
stat_summary(fun = mean, geom = "line", lwd = 1) +
facet_wrap(~ Channel, ncol=4) +
scale_alpha_manual(values = seq(0.1, 0.9, 0.1)) +
ggtitle("Eyes-Open Power Spectrum Across Channels") +
ylab("Log Power") +
xlab("Frequency (Hz)") +
theme_pander() +
coord_cartesian(xlim=c(1,40), ylim=c(5, 17)) + #ylim=c(5,17)) +
scale_fill_brewer(palette = "Set3") +
theme(plot.title = element_text(hjust = 0.5))
```
At a first sight, the eyes-open power spectrum looks remarkably similar, with
the obvious (and expected) difference of a less prominent pean in the alpha
band. To better compare the two types of recordings, we can visualize the
avearage spectra on top of ech other:
```{r fig.width=6, fig.height=3}
l_spectra <- rbind(l_ec_spectra, l_eo_spectra)
al_spectra <- l_spectra %>%
group_by(Subject, Frequency, Band, Recording) %>%
summarise(Power = mean(Power))
al_spectra <- al_spectra %>% ungroup()
ggplot(data=al_spectra, aes(x = Frequency, y = Power,
col = Recording, fill = Recording)) +
annotate("rect", xmin = 0, xmax = 4, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[1]) +
annotate("rect", xmin = 4, xmax = 8, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[2]) +
annotate("rect", xmin = 8, xmax = 13, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[3]) +
annotate("rect", xmin = 13, xmax = 15, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[4]) +
annotate("rect", xmin = 15, xmax = 18, ymin = 0, ymax = Inf,
alpha = 0.5, fill = K[5]) +
annotate("rect", xmin = 18, xmax = 30, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[6]) +
annotate("rect", xmin = 30, xmax = 40, ymin = 0, ymax = Inf,
alpha = 0.5, fill=K[7]) +
stat_summary(fun.data = mean_sdl, geom = "ribbon",
alpha = 0.5, col = "white") +
scale_color_brewer(palette = "Set1") +
scale_fill_brewer(palette = "Set1") +
stat_summary(fun = mean, geom = "line", lwd = 2) +
coord_cartesian(xlim=c(0,40), ylim=c(5,18)) +
xlab("Frequency (Hz)") +
ylab("Log Power") +
theme_pander() +
annotate("text", x=2, y=18, label="Delta", angle=90, hjust=1) +
annotate("text", x=6, y=18, label="Theta", angle=90, hjust=1) +
annotate("text", x=10.5, y=18, label="Alpha", angle=90, hjust=1) +
annotate("text", x=14, y=18, label="Low Beta", angle=90, hjust=1) +
annotate("text", x=16.5, y=18, label="Upper Beta", angle=90, hjust=1) +
annotate("text", x=24, y=18, label="High Beta", angle=90, hjust=1) +
annotate("text", x=35, y=18, label="Gamma", angle=90, hjust=1)
```
## Correlations Across Recordings
```{r, fig.width=10, fig.height=4}
test <- al_spectra %>%
group_by(Subject, Band, Recording) %>%
summarize(Power = mean(Power)) %>%
ungroup()
test$Recording <- recode(test$Recording,
`Eyes Open` = "EyesOpen",
`Eyes Closed` = "EyesClosed")
by_subj <- test %>%
pivot_wider(id_cols = c("Subject", "Band"),
values_from = c("Power"),
names_from = c("Recording"))
global <- by_subj %>%
group_by(Band) %>%
summarize(r=cor(EyesOpen, EyesClosed),
peo=mean(EyesOpen),
pec=mean(EyesClosed))
global$y <- seq(8,11, 0.5)
bandplot <- ggplot(by_subj, aes(y=EyesClosed, x=EyesOpen, fill=Band, color=Band)) +
geom_point(stat="identity") +
geom_smooth(method="lm") +
#scale_fill_brewer(palette="Set3") +
#scale_color_brewer(palette="Set3") +
scale_color_jco() +
scale_fill_jco() +
xlab("Power Eyes Open") +
ylab("Power Eyes Closed") +
geom_text(data = global,
x = global$peo + 1.5, y=global$pec -.5,
label=paste("r =",
round(global$r, 2)),
show.legend = F) +
ggtitle("(B) Spectral Power Across Recordings") +
theme_pander() +
theme(legend.position="bottom")
ggplot(global, aes(x=Band, y=r, fill=Band, color=Band)) +
geom_bar(stat="identity", alpha=0.75) +
scale_fill_brewer(palette="Set3") +
scale_color_brewer(palette="Set3") +
ylim(0,1) +
theme_pander()
iafplot <- iafplot + theme(legend.position="bottom") +
ggtitle("(A) IAF Across Recordings")
grid.arrange(iafplot, bandplot, ncol=2)
g <- arrangeGrob(iafplot, bandplot, ncol=2) #generates g
ggsave(file="figure5.png", g, dpi=300, width = 9, height=5, units = "in")
```
## Correlations with Rate of Forgetting
Like we did for eyes-closed data, we can now calculate the correlations between
eyes-open EEG power spectra and the behavioral rate fo forgetting for verbal and
visual materials.
```{r}
wbehav <- wbehav %>%
mutate(GlobalAlpha=(Vocabulary + Maps) / 2)
Adata_eo <- l_eo_spectra %>%
group_by(Subject, Channel, Band, Recording) %>%
summarize(Power=mean(Power))
Fdata_eo <- inner_join(Adata_eo, behav, by = "Subject")
Cdata_eo <- Fdata_eo %>%
group_by(material, Channel, Band, Recording) %>%
summarise(r = cor(Power, alpha),
p = cor.test(Power, alpha)$p.value,
rob_r = robcor(Power, alpha))
Rdata_eo <- Cdata_eo %>%
group_by(material, Band, Recording) %>%
mutate(q = p.adjust(p, method="BH")) %>%
mutate(rob_p = r2p(rob_r, n=50)) %>%
mutate(rob_q = p.adjust(rob_p, method="BH"))
```
We save the data so that it can be visualized as a topomap with Python MNE.
Here is the full table of statistics:
```{r}
write_csv(Rdata_eo, "correlations_channel_band_eyes_open.csv",
col_names = T)
Rdata_eo %>%
xtable() %>%
kable(digits = 3) %>%
kable_styling(bootstrap_options = c("striped", "hover"))
```
And here is the corresponding distributions of _r_ and _p_ values.
The dashed lines correspond to a significant threshold of _p_ < .05 on either
a _r_ or a _p_-value scale.
```{r}
ggplot(Rdata_eo, aes(x = Band, y = r, col = Channel)) +
geom_point() +
stat_summary(fun.data = "mean_se", col="black",
alpha=0.5, geom = "errorbar") +
facet_wrap(~ material) +
ggtitle("Correlation, by Band") +
ylab("r value") +
annotate("segment", x=-Inf, xend=Inf, y=0.28, yend = 0.28, lty=2) +
annotate("segment", x=-Inf, xend=Inf, y=-0.28, yend = -0.28, lty=2) +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
theme_pander()
ggplot(Rdata_eo, aes(x = Band, y = p, col = Channel)) +
geom_point() +
stat_summary(fun.data = "mean_se", col="black",
alpha=0.5, geom = "errorbar") +
ggtitle("p-value, by Band") +
ylab("p value") +
facet_wrap(~ material) +
annotate("segment", x=-Inf, xend=Inf, y=0.05, yend = 0.05, lty=2) +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
scale_y_log10() +
theme_pander()
```
Now, we might wonder how much the correlations change from eyes closed to
eyes open recordings. The best way to chack is to visualize then as a
scatterplot:
```{r}
Rdata <- bind_rows(Rdata_ec, Rdata_eo)
wrdata <- pivot_wider(Rdata, id_cols = c("material", "Channel", "Band"),
names_from = Recording,
values_from = r)
ggplot(wrdata, aes(x = `Eyes Open`, y = `Eyes Closed`,
col = material)) +
annotate("segment", x = 0, y=-Inf, xend=0,
yend=Inf, col="grey", lwd=1, lty=1) +
annotate("segment", x = -Inf, y=0, xend=Inf,
yend=0, col="grey", lwd=1, lty=1) +
geom_point(alpha=0.5, size=3) +
annotate("segment", x = -0.25, y=-0.25, xend=0.5,
yend=0.5, col="black", lwd=1, lty=2) +
theme(plot.title = element_text(hjust = 0.5)) +
#geom_smooth(method = "lm", formula = y ~ x,
# fullrange = T, lwd = 1) +
scale_color_brewer(palette="Dark2") +
ggtitle("Correlation Coefficients Across Recordings") +
theme_pander()
```
Let's tabulate only those channels that survive the FDR correction:
```{r}
survivors <- Rdata_eo %>%
filter(q < 0.05 | rob_q < 0.05)
survivors %>%
xtable() %>%
kable(digits = 3) %>%
kable_styling(bootstrap_options = c("striped", "hover"))
```
In the case of eyes-open data, we have a much larger set of channels that
survive correction for multiple comparison. Although these correlations
generally reflect the same trends we have seen the eyes-closed data (i.e.,
significant positive correlations for prefrontal and right parietal sites), they
are now stroger for _visual_ (not _verbal_) materials and centered at at
slightly higher frequency (upper beta instead of low beta).
Here is an overview of the scatterplots and correlations:
```{r fig.width=9, fig.height=9}
focus <- Fdata_eo %>%
filter(material == "Maps",
Channel %in% survivors$Channel,
Band == "Upper Beta") %>%
rename(Alpha = alpha)
ggplot(focus, aes(x=Alpha, y=Power)) +
geom_point(size=4, alpha=0.5, col="black") +
geom_smooth(method = "lm", formula = y ~ x,
col="red", fill="red", fullrange = T, lwd=2) +
theme_pander() +
scale_x_continuous() +
scale_y_continuous() +
ggtitle("Rate of Forgetting and Eyes-Open Beta Power") +
xlab(expression(paste(alpha, " Maps"))) +
ylab("Upper Beta Power (15-18 Hz)") +
facet_wrap(~ Channel, scales="free_y") +
geom_text(data=survivors, col="red",
mapping=aes(x=0.25, y=9.5,
label= paste("r =", round(r, 2)))) +
theme(panel.spacing = unit(1.5, "lines")) +
theme(plot.title = element_text(hjust = 0.5))
```
# Summary
In general, posterior (P8) and frontal channels (AF3/4, F7/8) are the most commonly associated with rate of forgetting. The correlations mostly happen in the beta range.
```{r}
Rdata_g <- full_join(Rdata_ec, Rdata_eo)
ggplot(filter(Rdata_g, p < 0.05), aes(x=Band, fill=Channel)) +
geom_bar(col="white", alpha=0.75) +
theme_pander() +
scale_fill_jco()
Rdata_g$Recording <- recode(Rdata_g$Recording,
`Eyes Open` = "EyesOpen",
`Eyes Closed` = "EyesClosed")
Rdata_g %>%
pivot_wider(id_cols = ("Channel", "Band"),
values_from=c("Recording")) %>%
group_by(Recording, material)
```
# Predicting Rate of Forgetting with Group Lasso
So far, we have shown that neurophysiological signals exists that are
correlated with the rate of forgetting. This, however, does not directly
answer wheter we could "read" an individual's rate of forgetting from their
EEG data directy.
## Group LASSO
To do so, we need to use a ML approach. Specifically, here we will use
_group LASSO_ regression. Group LASSO is a way to combine regression, validation,
and feature selection into a single approach.
LASSO works like a normal regression, with the additional constraint that the
$\beta$ regressors need to minimize the sum of the residual sum of squares
(RSS) and the quantity $- \lambda||\beta||_{1}$, where $||\beta||_{1}$ is the
first-order norm (the sum of absolute values of each regressor weight). For
$\lambda = 0$, LASSO reduces to normal regression but, as the value of
$\lambda$ grows, more and more regressors are "pushed" to zero and removed from
the pool. In _group_ LASSO, regressors are combined
and selected by groups, which is a natural choice when natural groupings exists,