define sample

The analyses below are based on the sample of all subjects.

For subset subjects, subjects (n = 5) were excluded according to the preregistration.
Preregistration: https://doi.org/10.17605/OSF.IO/UYJVA
These subjects had less than 70% of audio epochs in any condition after artifact rejection that excluded eye blinks.

For all subjects, all subjects were included, and only extreme artifacts were rejected (i.e., eye blinks were ignored). This is reasonable because ASSRs occur at a much higher frequency than eye blinks.

Sample size: N = 43.

quick data check

Sanity check for behavioral performance (across low and high load):

  • min number of hits (could be 0) : 147
  • max number of hits (could be 288) : 288
  • min number of false alarms (could be 0) : 0
  • max number of false alarms (could be 892) : 223

Note:
Hits are correct responses between 200 and 1000 ms after target onset (defined in ASSR_study1_process_beh.R). This criterion was not preregistered, but it makes sense.
False alarms are responses at other times: 1152 + 7*4 (initial trials) - 288 (trial after a target) = 892.

# the numbers 1 to 4 refer to different blocks

# amp SNR raw (this measure was preregistered but turned out useless, see below)
D$AmpSNRlo = rowMeans(cbind(D$AmpSNRlo1,D$AmpSNRlo2,D$AmpSNRlo3,D$AmpSNRlo4))
D$AmpSNRhi = rowMeans(cbind(D$AmpSNRhi1,D$AmpSNRhi2,D$AmpSNRhi3,D$AmpSNRhi4))
D$AmpSNRloMhi = D$AmpSNRlo - D$AmpSNRhi
D$AmpSNRlo1Mhi1 = D$AmpSNRlo1 - D$AmpSNRhi1
D$AmpSNRlo2Mhi2 = D$AmpSNRlo2 - D$AmpSNRhi2
D$AmpSNRlo3Mhi3 = D$AmpSNRlo3 - D$AmpSNRhi3
D$AmpSNRlo4Mhi4 = D$AmpSNRlo4 - D$AmpSNRhi4

# amp S raw (signal)
D$AmpSlo = rowMeans(cbind(D$AmpSlo1,D$AmpSlo2,D$AmpSlo3,D$AmpSlo4))
D$AmpShi = rowMeans(cbind(D$AmpShi1,D$AmpShi2,D$AmpShi3,D$AmpShi4))
D$AmpSloMhi = D$AmpSlo - D$AmpShi
D$AmpSlo1Mhi1 = D$AmpSlo1 - D$AmpShi1
D$AmpSlo2Mhi2 = D$AmpSlo2 - D$AmpShi2
D$AmpSlo3Mhi3 = D$AmpSlo3 - D$AmpShi3
D$AmpSlo4Mhi4 = D$AmpSlo4 - D$AmpShi4

# amp N raw (noise)
D$AmpNlo = rowMeans(cbind(D$AmpNlo1,D$AmpNlo2,D$AmpNlo3,D$AmpNlo4))
D$AmpNhi = rowMeans(cbind(D$AmpNhi1,D$AmpNhi2,D$AmpNhi3,D$AmpNhi4))
D$AmpNloMhi = D$AmpNlo - D$AmpNhi
D$AmpNlo1Mhi1 = D$AmpNlo1 - D$AmpNhi1
D$AmpNlo2Mhi2 = D$AmpNlo2 - D$AmpNhi2
D$AmpNlo3Mhi3 = D$AmpNlo3 - D$AmpNhi3
D$AmpNlo4Mhi4 = D$AmpNlo4 - D$AmpNhi4

# amp S minus N (nice because it compares S with N)
D$AmpSmNlo = rowMeans(cbind(D$AmpSmNlo1,D$AmpSmNlo2,D$AmpSmNlo3,D$AmpSmNlo4))
D$AmpSmNhi = rowMeans(cbind(D$AmpSmNhi1,D$AmpSmNhi2,D$AmpSmNhi3,D$AmpSmNhi4))
D$AmpSmNloMhi = D$AmpSmNlo - D$AmpSmNhi
D$AmpSmNlo1Mhi1 = D$AmpSmNlo1 - D$AmpSmNhi1
D$AmpSmNlo2Mhi2 = D$AmpSmNlo2 - D$AmpSmNhi2
D$AmpSmNlo3Mhi3 = D$AmpSmNlo3 - D$AmpSmNhi3
D$AmpSmNlo4Mhi4 = D$AmpSmNlo4 - D$AmpSmNhi4
# the numbers 1 to 4 refer to different blocks

# itc SNR raw (this measure was preregistered but turned out useless, see below)
D$ItcSNRlo = rowMeans(cbind(D$ItcSNRlo1,D$ItcSNRlo2,D$ItcSNRlo3,D$ItcSNRlo4))
D$ItcSNRhi = rowMeans(cbind(D$ItcSNRhi1,D$ItcSNRhi2,D$ItcSNRhi3,D$ItcSNRhi4))
D$ItcSNRloMhi = D$ItcSNRlo - D$ItcSNRhi
D$ItcSNRlo1Mhi1 = D$ItcSNRlo1 - D$ItcSNRhi1
D$ItcSNRlo2Mhi2 = D$ItcSNRlo2 - D$ItcSNRhi2
D$ItcSNRlo3Mhi3 = D$ItcSNRlo3 - D$ItcSNRhi3
D$ItcSNRlo4Mhi4 = D$ItcSNRlo4 - D$ItcSNRhi4

# itc S raw (signal)
D$ItcSlo = rowMeans(cbind(D$ItcSlo1,D$ItcSlo2,D$ItcSlo3,D$ItcSlo4))
D$ItcShi = rowMeans(cbind(D$ItcShi1,D$ItcShi2,D$ItcShi3,D$ItcShi4))
D$ItcSloMhi = D$ItcSlo - D$ItcShi
D$ItcSlo1Mhi1 = D$ItcSlo1 - D$ItcShi1
D$ItcSlo2Mhi2 = D$ItcSlo2 - D$ItcShi2
D$ItcSlo3Mhi3 = D$ItcSlo3 - D$ItcShi3
D$ItcSlo4Mhi4 = D$ItcSlo4 - D$ItcShi4

# itc N raw (noise)
D$ItcNlo = rowMeans(cbind(D$ItcNlo1,D$ItcNlo2,D$ItcNlo3,D$ItcNlo4))
D$ItcNhi = rowMeans(cbind(D$ItcNhi1,D$ItcNhi2,D$ItcNhi3,D$ItcNhi4))
D$ItcNloMhi = D$ItcNlo - D$ItcNhi
D$ItcNlo1Mhi1 = D$ItcNlo1 - D$ItcNhi1
D$ItcNlo2Mhi2 = D$ItcNlo2 - D$ItcNhi2
D$ItcNlo3Mhi3 = D$ItcNlo3 - D$ItcNhi3
D$ItcNlo4Mhi4 = D$ItcNlo4 - D$ItcNhi4

# itc S minus N (nice because it compares S with N)
D$ItcSmNlo = rowMeans(cbind(D$ItcSmNlo1,D$ItcSmNlo2,D$ItcSmNlo3,D$ItcSmNlo4))
D$ItcSmNhi = rowMeans(cbind(D$ItcSmNhi1,D$ItcSmNhi2,D$ItcSmNhi3,D$ItcSmNhi4))
D$ItcSmNloMhi = D$ItcSmNlo - D$ItcSmNhi
D$ItcSmNlo1Mhi1 = D$ItcSmNlo1 - D$ItcSmNhi1
D$ItcSmNlo2Mhi2 = D$ItcSmNlo2 - D$ItcSmNhi2
D$ItcSmNlo3Mhi3 = D$ItcSmNlo3 - D$ItcSmNhi3
D$ItcSmNlo4Mhi4 = D$ItcSmNlo4 - D$ItcSmNhi4

hit rates

Simple hit rates (%) were as follows:

  • Low load = 95.46
  • High load = 80.64

tables

behavior

dpr: signal detection index d´
RT: reaction time to hits (in ms)
pcu: partial credit unit score of working memory capacity
LL and UL refer to the 95% confidence interval (from two-tailed t tests).

Variable Mean LL UL N
dprlo 4.324 4.103 4.545 43
dprhi 2.607 2.413 2.800 43
dprloMhi 1.718 1.543 1.893 43
meanRTlo_ms 377.807 365.814 389.799 43
meanRThi_ms 505.242 490.861 519.623 43
meanRTloMhi -127.436 -138.628 -116.244 43
pcu 0.721 0.669 0.774 43

EEG

Amp: amplitude
Itc: intertrial coherence
SNR: signal-to-noise ratio
S: signal
N: noise
SmN: signal minus noise
vP3: visual P3 to targets (vs. nontargets)
LL and UL refer to the 95% confidence interval (from two-tailed t tests).

Variable Mean LL UL N
AmpSNRlo 5.788 4.840 6.736 43
AmpSNRhi 5.427 4.536 6.318 43
AmpSNRloMhi 0.361 -0.082 0.805 43
AmpSlo 0.236 0.205 0.266 43
AmpShi 0.232 0.202 0.262 43
AmpSloMhi 0.003 -0.006 0.013 43
AmpNlo 0.045 0.042 0.048 43
AmpNhi 0.048 0.044 0.052 43
AmpNloMhi -0.003 -0.006 -0.001 43
AmpSmNlo 0.191 0.160 0.222 43
AmpSmNhi 0.184 0.153 0.215 43
AmpSmNloMhi 0.006 -0.004 0.017 43
ItcSNRlo 4.929 4.320 5.538 43
ItcSNRhi 4.649 4.023 5.275 43
ItcSNRloMhi 0.280 -0.024 0.584 43
ItcSlo 0.389 0.341 0.438 43
ItcShi 0.373 0.324 0.422 43
ItcSloMhi 0.017 -0.002 0.035 43
ItcNlo 0.080 0.078 0.082 43
ItcNhi 0.082 0.081 0.084 43
ItcNloMhi -0.002 -0.004 0.000 43
ItcSmNlo 0.309 0.261 0.357 43
ItcSmNhi 0.291 0.241 0.340 43
ItcSmNloMhi 0.019 0.000 0.038 43
vP3lo 8.711 6.990 10.433 43
vP3hi 2.686 1.309 4.064 43
vP3loMhi 6.025 4.838 7.212 43

combined

dpr: signal detection index d´
RT: reaction time to hits (in ms)
pcu: partial credit unit score of working memory capacity
Amp: amplitude
Itc: intertrial coherence
SNR: signal-to-noise ratio
S: signal
N: noise
SmN: signal minus noise
vP3: visual P3 to targets (vs. nontargets)
LL and UL refer to the 95% confidence interval (from two-tailed t tests).

Variable Mean LL UL N
dprlo 4.324 4.103 4.545 43
dprhi 2.607 2.413 2.800 43
dprloMhi 1.718 1.543 1.893 43
meanRTlo_ms 377.807 365.814 389.799 43
meanRThi_ms 505.242 490.861 519.623 43
meanRTloMhi -127.436 -138.628 -116.244 43
pcu 0.721 0.669 0.774 43
AmpSmNlo 0.191 0.160 0.222 43
AmpSmNhi 0.184 0.153 0.215 43
AmpSmNloMhi 0.006 -0.004 0.017 43
ItcSmNlo 0.309 0.261 0.357 43
ItcSmNhi 0.291 0.241 0.340 43
ItcSmNloMhi 0.019 0.000 0.038 43
vP3lo 8.711 6.990 10.433 43
vP3hi 2.686 1.309 4.064 43
vP3loMhi 6.025 4.838 7.212 43

Bayes factors for load

Bayes factor (BF) analyses from Bayesian one-sample t tests of difference scores (low minus high load).
The BFs were computed with Aladins R script.
https://doi.org/10.17045/sthlmuni.4981154.v3

The BF01 uses uniform H1 models with different lower limits (LL) and upper limits (UL).
BF01 is the evidence for the null hypothesis relative to the alternative hypothesis.
If BF01 > 3, this is evidence for the null.
If BF01 < 1/3, this is evidence against the null.

BF01
Variable [-1, +1] [0, +1] [0, +0.2]
ampSNR 0.9 0.5 0.5
ampS 133.3 84.7 17.8
ampN 26.9 885.2 521.9
ampSmN 72.4 40.1 8.2
itcSNR 1.0 0.5 0.4
itcS 17.4 9.0 1.8
itcN 125.0 850.5 440.3
itcSmN 12.1 6.2 1.2

switch from SNR to SmN

explanation

Originally, we preregistered to compute the signal-to-noise ratio (SNR) of amplitudes to obtain a single measure that captures the strength of the signal relative to the noise. Amplitude SNR was calculated as the ratio between the amplitude at 40.96 Hz and the mean amplitude across 20 neighboring frequencies (ten on each side but omitting the two immediate neighbors on each side).

However, during data analysis, we realized that amplitude SNR was not the best measure of the differences between signal and noise. Because in our study, noise levels were very close to 0, amplitude SNR was extremely variable, even when signal and noise levels were almost identical. For example, consider the following realistic amplitude values: If for low load, signal amplitude = 0.24 µV and noise amplitude = 0.045 µV, then amplitude SNR = 5.33; and if for high load, signal = 0.24 µV and noise = 0.048 µV, then amplitude SNR = 5.0. Even though the amplitude is the same in low and high load for the signal, and almost the same for the noise (difference = −0.003 µV), the amplitude SNRs differ substantially (difference = 0.33). Thus, with small noise levels, tiny differences in noise levels yield substantial variability in amplitude SNR. As a consequence, results were inconclusive for SNR, even though results were conclusive for separate analyses of signal and noise (see above).

To obtain a single measure of the difference between signal and noise, we computed the amplitude difference of signal minus noise (SmN), defined as the amplitude at 40.96 Hz minus the mean amplitude across the neighboring 20 frequencies (ten on each side but omitting two immediate neighbors).

Although SmN as well as SNR are computed here, the manuscript reports only SmN.

SNR is noisy

As shown below, the scores vary greatly for the signal-to-noise ratio (SNR). The range of the differences between low and high load is huge for amplitude and ITC.

The difference scores between low and high load do not appear to be normally distributed (Shapiro-Wilks test):
AmpSNRloMhi: p = 0.107
ItcSNRloMhi: p = 0.006

Standard deviations:
AmpSNRloMhi: 1.44
ItcSNRloMhi: 0.989

SmN is better

To obtain a single measure of the difference between signal and noise, we computed the amplitude difference of signal minus noise (SmN), defined as the amplitude at 40.96 Hz minus the mean amplitude across the neighboring 20 frequencies (ten on each side but omitting two immediate neighbors).

For signal-minus-noise (SmN), the difference scores are more reasonable. They appear to be normally distributed and have a narrower range.

Test of normal distribution of difference scores between low and high load (Shapiro-Wilks test):
AmpSmNloMhi: p = 0.98
ItcSmNloMhi: p = 0.158

Standard deviations:
AmpSmNloMhi: 0.034
ItcSmNloMhi: 0.061

correlations with behavior

table

AmpSNRloMhi AmpSmNloMhi ItcSNRloMhi ItcSmNloMhi vP3loMhi dprloMhi meanRTloMhi
AmpSNRloMhi 1.000 0.768 0.811 0.824 0.134 -0.132 -0.235
AmpSmNloMhi 0.768 1.000 0.713 0.833 0.006 -0.060 -0.095
ItcSNRloMhi 0.811 0.713 1.000 0.908 0.056 0.011 -0.206
ItcSmNloMhi 0.824 0.833 0.908 1.000 0.107 -0.038 -0.173
vP3loMhi 0.134 0.006 0.056 0.107 1.000 0.325 -0.113
dprloMhi -0.132 -0.060 0.011 -0.038 0.325 1.000 -0.131
meanRTloMhi -0.235 -0.095 -0.206 -0.173 -0.113 -0.131 1.000

fishing

For the large sample, data exploration (fishing) suggests that the more d prime decreased from low to high, the larger the visual P3 decreased from low to high.

## 
##  Pearson's product-moment correlation
## 
## data:  D$dprloMhi and D$vP3loMhi
## t = 2.2009, df = 41, p-value = 0.03343
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.0273807 0.5697702
## sample estimates:
##       cor 
## 0.3250515

correlations with wm capacity

Pearson correlations with working memory capacity.

table

LL and UL refer to the 95% confidence interval of the correlation (from one-tailed t tests).
The BFs are computed with the BayesFactor package in R.
The BF01 uses a flat prior (beta width = 1). This prior is the default in JASP.
Cred_LL and Cred_UL refer to the 95% credible interval of the correlation (from BayesFactor).

Variable Correlation LL UL BF01 Cred_LL Cred_UL N
AmpSNRlo -0.126 -0.411 0.181 3.843 -0.398 0.175 43
AmpSlo 0.235 -0.070 0.500 1.720 -0.070 0.485 43
AmpSmNlo 0.226 -0.080 0.493 1.883 -0.081 0.476 43
ItcSNRlo 0.233 -0.072 0.498 1.763 -0.077 0.485 43
ItcSlo 0.273 -0.030 0.530 1.160 -0.039 0.511 43
ItcSmNlo 0.242 -0.063 0.506 1.608 -0.070 0.487 43
AmpSNRhi 0.248 -0.056 0.511 1.512 -0.061 0.490 43
AmpShi 0.214 -0.092 0.483 2.097 -0.085 0.466 43
AmpSmNhi 0.229 -0.077 0.495 1.839 -0.081 0.476 43
ItcSNRhi 0.235 -0.071 0.500 1.734 -0.076 0.480 43
ItcShi 0.247 -0.058 0.510 1.532 -0.066 0.494 43
ItcSmNhi 0.246 -0.059 0.509 1.548 -0.054 0.490 43
AmpSNRloMhi 0.247 -0.057 0.510 1.530 -0.062 0.493 43
AmpSloMhi 0.073 -0.232 0.365 4.737 -0.226 0.348 43
AmpSmNloMhi 0.008 -0.293 0.308 5.255 -0.284 0.291 43
ItcSNRloMhi -0.003 -0.303 0.298 5.262 -0.297 0.281 43
ItcSloMhi 0.037 -0.266 0.334 5.123 -0.256 0.319 43
ItcSmNloMhi -0.020 -0.319 0.282 5.221 -0.313 0.272 43

scatterplots

Scatterplots of working memory capacity (wmc.pcu) with EEG variables.

effect of block

Explore factorial analyses (load x block).

by measure

amplitude SNR

## =====================================================================
##                         Amplitude_SNR
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N     Mean    CI_LL    CI_UL
##   low     1 43 5.619822 4.579665 6.659980
##   low     2 43 5.592639 4.517536 6.667741
##   low     3 43 6.110569 5.069655 7.151483
##   low     4 43 5.830088 4.846019 6.814157
##  high     1 43 5.057118 4.144797 5.969439
##  high     2 43 5.142938 4.301205 5.984672
##  high     3 43 5.982547 4.881841 7.083253
##  high     4 43 5.525280 4.554086 6.496473
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 10817.2      1  2829.43     42 160.5708 6.106e-16 ***
## load           11.2      1   174.26     42   2.7059  0.107442    
## block          28.2      3   295.71    126   4.0007  0.009267 ** 
## load:block      2.3      3   241.64    126   0.3961  0.756043    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic  p-value
## block             0.70055 0.012793
## load:block        0.77429 0.064320
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])  
## block      0.82502    0.01453 *
## load:block 0.86892    0.72805  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps Pr(>F[HF])
## block      0.8806841 0.01258423
## load:block 0.9315579 0.74197967
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                   Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 -0.17319  1  0.010894  0.46258      1     42 0.5002
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 24.72699 ±5.53%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

amplitude S

## =====================================================================
##                         Amplitude_S
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.2354259 0.2029241 0.2679277
##   low     2 43 0.2289417 0.1960833 0.2618001
##   low     3 43 0.2437035 0.2115112 0.2758958
##   low     4 43 0.2344372 0.2014847 0.2673897
##  high     1 43 0.2317969 0.2008503 0.2627435
##  high     2 43 0.2341405 0.2007552 0.2675258
##  high     3 43 0.2375124 0.2064063 0.2686184
##  high     4 43 0.2261258 0.1959454 0.2563063
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value Pr(>F)    
## (Intercept) 18.8378      1   3.1793     42 248.8519 <2e-16 ***
## load         0.0009      1   0.0786     42   0.4804 0.4921    
## block        0.0055      3   0.2122    126   1.0839 0.3585    
## load:block   0.0023      3   0.1701    126   0.5618 0.6412    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic  p-value
## block             0.84622 0.236095
## load:block        0.75271 0.041274
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])
## block      0.89808     0.3549
## load:block 0.83260     0.6099
## 
##               HF eps Pr(>F[HF])
## block      0.9655296  0.3573446
## load:block 0.8894447  0.6211959
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0040219  1   0.00783  0.33145      1     42 0.5679
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 18.52707 ±3.69%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

amplitude SmN

## =====================================================================
##                         Amplitude_SmN
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.1895892 0.1564368 0.2227416
##   low     2 43 0.1832785 0.1493942 0.2171629
##   low     3 43 0.1989526 0.1665382 0.2313670
##   low     4 43 0.1905197 0.1573785 0.2236608
##  high     1 43 0.1805083 0.1481550 0.2128616
##  high     2 43 0.1849960 0.1507953 0.2191967
##  high     3 43 0.1919273 0.1601110 0.2237436
##  high     4 43 0.1795655 0.1483738 0.2107572
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value   Pr(>F)    
## (Intercept) 12.0831      1   3.2961     42 153.9678 1.23e-15 ***
## load         0.0035      1   0.0977     42   1.4845   0.2299    
## block        0.0074      3   0.2346    126   1.3299   0.2677    
## load:block   0.0020      3   0.1844    126   0.4613   0.7098    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic  p-value
## block             0.77125 0.060508
## load:block        0.74266 0.033296
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])
## block      0.84869     0.2696
## load:block 0.82691     0.6734
## 
##               HF eps Pr(>F[HF])
## block      0.9080680  0.2689777
## load:block 0.8828683  0.6859549
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0022709  1 0.0023313 0.098142      1     42 0.7556
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 21.20661 ±2.06%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

ITC SNR

## =====================================================================
##                         Intertrial_Coherence_SNR
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N     Mean    CI_LL    CI_UL
##   low     1 43 4.784243 4.105148 5.463337
##   low     2 43 4.649708 3.960745 5.338672
##   low     3 43 5.244185 4.582971 5.905400
##   low     4 43 5.037781 4.362261 5.713301
##  high     1 43 4.393697 3.697620 5.089775
##  high     2 43 4.484483 3.877457 5.091510
##  high     3 43 4.867643 4.156069 5.579217
##  high     4 43 4.850407 4.094740 5.606075
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##             Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 7889.5      1  1271.85     42 260.5333 < 2.2e-16 ***
## load           6.7      1    82.11     42   3.4470  0.070390 .  
## block         15.9      3   168.66    126   3.9522  0.009857 ** 
## load:block     0.9      3   144.62    126   0.2703  0.846696    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.81657 0.14298
## load:block        0.85283 0.26216
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])  
## block      0.87213    0.01359 *
## load:block 0.91023    0.82856  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps Pr(>F[HF])
## block      0.9352873 0.01159454
## load:block 0.9797226 0.84281256
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 -0.062961  1 0.0025696   0.1082      1     42 0.7438
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 26.31312 ±3.03%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

ITC S

## =====================================================================
##                         Intertrial_Coherence_S
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.3762909 0.3256153 0.4269664
##   low     2 43 0.3737391 0.3179174 0.4295608
##   low     3 43 0.4054024 0.3552023 0.4556024
##   low     4 43 0.4020361 0.3521220 0.4519502
##  high     1 43 0.3565692 0.3046919 0.4084466
##  high     2 43 0.3703728 0.3204864 0.4202592
##  high     3 43 0.3853024 0.3319270 0.4386777
##  high     4 43 0.3790997 0.3242125 0.4339868
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##             Sum Sq num Df Error SS den Df  F value  Pr(>F)    
## (Intercept) 49.962      1   8.1313     42 258.0650 < 2e-16 ***
## load         0.024      1   0.3032     42   3.2553 0.07837 .  
## block        0.051      3   0.7423    126   2.8697 0.03912 *  
## load:block   0.005      3   0.4623    126   0.4634 0.70833    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic  p-value
## block             0.75822 0.046329
## load:block        0.84016 0.213990
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])  
## block      0.83428    0.04928 *
## load:block 0.91077    0.69050  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps Pr(>F[HF])
## block      0.8913895 0.04550189
## load:block 0.9803616 0.70454975
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0041708  1 0.0038972  0.16432      1     42 0.6873
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 24.04578 ±4.68%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

ITC SmN

## =====================================================================
##                         Intertrial_Coherence_SmN
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.2963304 0.2455145 0.3471463
##   low     2 43 0.2927415 0.2372073 0.3482758
##   low     3 43 0.3273945 0.2776781 0.3771109
##   low     4 43 0.3209473 0.2709248 0.3709697
##  high     1 43 0.2732070 0.2207702 0.3256438
##  high     2 43 0.2865272 0.2370540 0.3360003
##  high     3 43 0.3044528 0.2508897 0.3580158
##  high     4 43 0.2985999 0.2427133 0.3544865
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 30.9652      1   8.1198     42 160.1690 6.368e-16 ***
## load         0.0299      1   0.3157     42   3.9825   0.05249 .  
## block        0.0592      3   0.7431    126   3.3466   0.02132 *  
## load:block   0.0044      3   0.5017    126   0.3721   0.77327    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic  p-value
## block             0.74982 0.038821
## load:block        0.83071 0.182795
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])  
## block      0.82861    0.02941 *
## load:block 0.90764    0.75389  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps Pr(>F[HF])
## block      0.8848339 0.02645561
## load:block 0.9766979 0.76858780
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0022767  1 0.0010523 0.044243      1     42 0.8344
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 23.32998 ±2.2%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

visual P3

## =====================================================================
##                         Visual_P3
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 11.169246 9.0251672 13.313324
##   low     2 43  8.076265 6.1420596 10.010470
##   low     3 43  8.057649 6.1892683  9.926029
##   low     4 43  7.542374 5.9993146  9.085433
##  high     1 43  2.917366 1.4244081  4.410323
##  high     2 43  2.606342 0.9510336  4.261651
##  high     3 43  2.032274 0.4965396  3.568009
##  high     4 43  3.188658 1.7104820  4.666835
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 11171.7      1   7370.7     42  63.6592 5.993e-10 ***
## load         3122.1      1   1249.9     42 104.9063 5.462e-13 ***
## block         212.8      3   1027.4    126   8.6982 2.739e-05 ***
## load:block    173.3      3    871.6    126   8.3504 4.161e-05 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.66234 0.00496
## load:block        0.87567 0.36842
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])    
## block      0.79633  0.0001335 ***
## load:block 0.92505  7.231e-05 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps   Pr(>F[HF])
## block      0.8476329 8.949664e-05
## load:block 0.9970882 4.251461e-05
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                  Value Df test stat approx F num Df den Df    Pr(>F)    
## load1 : block1 -1.7612  1   0.26036   14.785      1     42 0.0004024 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 0.04701987 ±1.58%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

summary

Summary of interaction analyses:

  • Overall_interaction has 3 dfs.
  • Linear_interaction has 1 df and captures the interaction of load with the linear trend over blocks.
  • BF01_interaction is the BF for a model without the overall interaction versus a model with the overall interaction (prior: Cauchy r scale = 0.5).
  • BF01_error% estimates the error of the BF in percent. For example, if BF = 10 and the error is 10%, then the BF is estimated to vary between 9 and 11.
Variable Overall_Interaction_p Linear_Interaction_p BF01_Interaction BF01_error%
Amplitude_SNR 0.728 0.500 24.727 5.528
Amplitude_S 0.610 0.568 18.527 3.685
Amplitude_SmN 0.673 0.756 21.207 2.062
Intertrial_Coherence_SNR 0.829 0.744 26.313 3.030
Intertrial_Coherence_S 0.690 0.687 24.046 4.678
Intertrial_Coherence_SmN 0.754 0.834 23.330 2.198
Visual_P3 0.001 0.001 0.047 1.580

reliability

Reliability of EEG variables over blocks. Results show mean correlations between the four blocks.
Note that raw scores (i.e., low and high load) have decent reliability whereas the difference scores show low reliability. This is not necessarily a problem: If all subjects change similarly, any variability in the difference scores would reflect mainly measurement noise, and the difference scores would show a low correlations over blocks (i.e., low reliability). Because of their low reliability, the difference scores are a poor measure if the goal is to distinguish the order among individual subjects.

Variable low high loMhi
ampSNR 0.787 0.831 0.231
ampS 0.849 0.881 0.097
ampSmN 0.837 0.880 0.141
itcSNR 0.751 0.761 0.160
itcS 0.838 0.842 0.201
itcSmN 0.831 0.840 0.189

effect of minute

Analysis of EEG data in 1-min blocks.
The data in each 3-min block were analyzed by minute (this was done during preprocessing in MNE-python). For each minute, mean amp (and itc) were computed and then averaged across the four blocks of load.
Note that the R output uses the term “block,” but this is meant to refer to “minute.”

by measure

amplitude SNR

## =====================================================================
##                         Amplitude_SNR
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N     Mean    CI_LL    CI_UL
##   low     1 43 4.302108 3.613755 4.990460
##   low     2 43 3.899078 3.280284 4.517871
##   low     3 43 3.748428 3.189172 4.307684
##  high     1 43 4.074853 3.442178 4.707528
##  high     2 43 3.664710 3.052512 4.276908
##  high     3 43 3.548436 2.945916 4.150956
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##             Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 3869.9      1   945.12     42 171.9735 < 2.2e-16 ***
## load           3.1      1    28.80     42   4.5757   0.03829 *  
## block         13.6      2    33.45     84  17.0908 5.924e-07 ***
## load:block     0.0      2    15.93     84   0.0373   0.96337    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.91935 0.17838
## load:block        0.94086 0.28660
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])    
## block      0.92537  1.367e-06 ***
## load:block 0.94416     0.9573    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##              HF eps   Pr(>F[HF])
## block      0.966166 8.654491e-07
## load:block 0.987220 9.620746e-01
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df  test stat approx F num Df den Df Pr(>F)
## load1 : block1 -0.013631  1 0.00083357 0.035039      1     42 0.8524
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 13.62631 ±1.45%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

amplitude S

## =====================================================================
##                         Amplitude_S
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.2845372 0.2491391 0.3199353
##   low     2 43 0.2801594 0.2438541 0.3164646
##   low     3 43 0.2714554 0.2384672 0.3044436
##  high     1 43 0.2854517 0.2494177 0.3214858
##  high     2 43 0.2747311 0.2389026 0.3105596
##  high     3 43 0.2647926 0.2318710 0.2977142
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value  Pr(>F)    
## (Intercept) 19.7753      1  3.01928     42 275.0866 < 2e-16 ***
## load         0.0009      1  0.05979     42   0.6288 0.43225    
## block        0.0123      2  0.10603     84   4.8658 0.01001 *  
## load:block   0.0007      2  0.06327     84   0.4718 0.62550    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.95707 0.40678
## load:block        0.97159 0.55386
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])  
## block      0.95884    0.01104 *
## load:block 0.97237    0.62019  
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##              HF eps Pr(>F[HF])
## block      1.003685 0.01001195
## load:block 1.018895 0.62550255
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0037887  1  0.021004  0.90109      1     42 0.3479
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 10.19342 ±1.42%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

amplitude SmN

## =====================================================================
##                         Amplitude_SmN
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.2116556 0.1750468 0.2482643
##   low     2 43 0.1996781 0.1631020 0.2362542
##   low     3 43 0.1912376 0.1572696 0.2252055
##  high     1 43 0.2074059 0.1703156 0.2444963
##  high     2 43 0.1900688 0.1530619 0.2270758
##  high     3 43 0.1792790 0.1443201 0.2142378
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##             Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 9.9675      1   3.2175     42 130.1116 1.912e-14 ***
## load        0.0048      1   0.0709     42   2.8290 0.0999979 .  
## block       0.0257      2   0.1102     84   9.7971 0.0001498 ***
## load:block  0.0007      2   0.0599     84   0.4705 0.6263311    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.93014 0.22657
## load:block        0.98270 0.69922
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])    
## block      0.93470  0.0002226 ***
## load:block 0.98299  0.6230726    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps   Pr(>F[HF])
## block      0.9766123 0.0001726392
## load:block 1.0308405 0.6263310964
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0038545  1  0.022036  0.94637      1     42 0.3362
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 10.36296 ±3.75%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

ITC SNR

## =====================================================================
##                         Intertrial_Coherence_SNR
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N     Mean    CI_LL    CI_UL
##   low     1 43 3.533940 3.121361 3.946518
##   low     2 43 3.318253 2.916440 3.720065
##   low     3 43 3.150208 2.775801 3.524616
##  high     1 43 3.377866 2.950984 3.804747
##  high     2 43 3.071259 2.676384 3.466134
##  high     3 43 3.018445 2.617382 3.419508
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 2716.74      1   392.82     42 290.4694 < 2.2e-16 ***
## load           2.05      1    11.44     42   7.5230  0.008916 ** 
## block          6.26      2    16.35     84  16.0922 1.212e-06 ***
## load:block     0.16      2     9.91     84   0.6722  0.513297    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.97720 0.62326
## load:block        0.98389 0.71675
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])    
## block      0.97771  1.533e-06 ***
## load:block 0.98414     0.5111    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##              HF eps   Pr(>F[HF])
## block      1.024895 1.212058e-06
## load:block 1.032134 5.132970e-01
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 -0.012155  1 0.0011946 0.050235      1     42 0.8237
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 9.435379 ±2.06%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

ITC S

## =====================================================================
##                         Intertrial_Coherence_S
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.4821811 0.4250107 0.5393515
##   low     2 43 0.4627245 0.4088196 0.5166294
##   low     3 43 0.4398656 0.3881931 0.4915382
##  high     1 43 0.4658354 0.4074471 0.5242237
##  high     2 43 0.4347661 0.3799623 0.4895698
##  high     3 43 0.4140121 0.3601571 0.4678670
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##             Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 52.221      1   7.4766     42 293.3539 < 2.2e-16 ***
## load         0.035      1   0.1739     42   8.5218  0.005619 ** 
## block        0.095      2   0.2395     84  16.7398 7.608e-07 ***
## load:block   0.002      2   0.1618     84   0.4272  0.653744    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.99847 0.96908
## load:block        0.92976 0.22471
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])    
## block      0.99847  7.737e-07 ***
## load:block 0.93437     0.6402    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps   Pr(>F[HF])
## block      1.0482767 7.608487e-07
## load:block 0.9762458 6.489584e-01
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0047539  1  0.010365  0.43991      1     42 0.5108
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 9.3501 ±8.79%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

ITC SmN

## =====================================================================
##                         Intertrial_Coherence_SmN
## =====================================================================
## 
## 
## Descriptives
## ============
##  load block  N      Mean     CI_LL     CI_UL
##   low     1 43 0.3447324 0.2880983 0.4013665
##   low     2 43 0.3198047 0.2651189 0.3744904
##   low     3 43 0.2975716 0.2458088 0.3493343
##  high     1 43 0.3256380 0.2672155 0.3840606
##  high     2 43 0.2908389 0.2357385 0.3459392
##  high     3 43 0.2741123 0.2198751 0.3283495
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df  F value    Pr(>F)    
## (Intercept) 24.5995      1   7.5174     42 137.4387 7.919e-15 ***
## load         0.0367      1   0.1817     42   8.4720  0.005748 ** 
## block        0.1062      2   0.2440     84  18.2904 2.547e-07 ***
## load:block   0.0011      2   0.1579     84   0.2799  0.756577    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## Mauchly Tests for Sphericity
## 
##            Test statistic p-value
## block             0.99901 0.97987
## load:block        0.94061 0.28504
## 
## 
## Greenhouse-Geisser and Huynh-Feldt Corrections
##  for Departure from Sphericity
## 
##             GG eps Pr(>F[GG])    
## block      0.99901  2.578e-07 ***
## load:block 0.94394      0.744    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
##               HF eps   Pr(>F[HF])
## block      1.0488834 2.547078e-07
## load:block 0.9869693 7.537216e-01
## 
## 
## Linear interaction contrast
## ===========================
## Multivariate Test: Pillai test statistic
## P-value adjustment method: holm
##                    Value Df test stat approx F num Df den Df Pr(>F)
## load1 : block1 0.0021825  1 0.0022732 0.095692      1     42 0.7586
## 
## 
## 
## BF without vs with interaction
## ==============================
## Bayes factor analysis
## --------------
## [1] load + block + fp : 11.50171 ±3.16%
## 
## Against denominator:
##   eeg_dv ~ load + block + load:block + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

summary

Summary of interaction analyses:

  • Overall_interaction has 3 dfs.
  • Linear_interaction has 1 df and captures the interaction of load with the linear trend over blocks.
  • BF01_interaction is the BF for a model without the overall interaction versus a model with the overall interaction (prior: Cauchy r scale = 0.5).
  • BF01_error% estimates the error of the BF in percent. For example, if BF = 10 and the error is 10%, then the BF is estimated to vary between 9 and 11.
Variable Overall_Interaction_p Linear_Interaction_p BF01_Interaction BF01_error%
Amplitude_SNR 0.957 0.852 13.626 1.450
Amplitude_S 0.620 0.348 10.193 1.424
Amplitude_SmN 0.623 0.336 10.363 3.754
Intertrial_Coherence_SNR 0.511 0.824 9.435 2.059
Intertrial_Coherence_S 0.640 0.511 9.350 8.794
Intertrial_Coherence_SmN 0.744 0.759 11.502 3.164

time-frequency analysis at 2 Hz

The goal of this exploratory time-frequency analysis was to examine if the 40-Hz signal changed periodically with the onset of the visual stimuli, which were shown every 500 ms (i.e., at 2 Hz). To detect this period change, epochs were rather long (10 s), and each epoch began every 20th visual stimulus (see MNE-python script).

  • These epochs should contain a 40-Hz signal (even though the phase shifts between epochs).
  • If the onsets of the visual stimuli affect the 40-Hz signal periodically, then the 40-Hz signal should change at 2 Hz within an epoch.
  • Thus, within the 40-Hz signal, there should be a signal at 2 Hz.
  • The noise can be defined by surrounding frequencies (10 on each side excluding the 2 nearest neighbors).
  • Results show amplitude SmN and S for the 2-Hz signal.

A potential concern is that the 40-Hz response may be confounded by indirect visual effects on the same electrodes as used for ASSRs. That is, the electrodes that were used to record ASSRs may pick up unrelated ERP activity from visual onsets. However, because the response is recorded at 40 Hz whereas visual events occur at 2 Hz, an analysis of only the 40-Hz response should already remove confounding effects of the visual events at 2 Hz (because the frequency is much lower). Accordingly, any 2-Hz activity within the 40-Hz response suggests that the 40-Hz response is actually affected by the visual onsets.

Although results suggest some activity at 2 Hz, there were no differences among the load conditions.

by measure

amplitude SmN

N = 43

## =====================================================================
##                         AmpSmN
## =====================================================================
## 
## 
## Descriptives
## ============
##  load  N     Mean     CI_LL    CI_UL
##   low 43 1.577375 0.8244086 2.330342
##  high 43 1.694753 0.9205658 2.468940
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##              Sum Sq num Df Error SS den Df F value    Pr(>F)    
## (Intercept) 230.197      1   465.58     42  20.766 4.423e-05 ***
## load          0.296      1    51.63     42   0.241    0.6261    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## BF of main effect
## =================
## Bayes factor analysis
## --------------
## [1] fp : 4.077431 ±0.59%
## 
## Against denominator:
##   eeg_dv ~ load + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

amplitude S

N = 43

## =====================================================================
##                         AmpS
## =====================================================================
## 
## 
## Descriptives
## ============
##  load  N     Mean    CI_LL    CI_UL
##   low 43 3.142035 2.352798 3.931273
##  high 43 3.172357 2.359799 3.984916
## 
## 
## Anova
## =====
## 
## Univariate Type III Repeated-Measures ANOVA Assuming Sphericity
## 
##             Sum Sq num Df Error SS den Df F value    Pr(>F)    
## (Intercept) 857.24      1   518.92     42 69.3830 1.949e-10 ***
## load          0.02      1    50.09     42  0.0166    0.8982    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## 
## BF of main effect
## =================
## Bayes factor analysis
## --------------
## [1] fp : 4.421759 ±1.85%
## 
## Against denominator:
##   eeg_dv ~ load + fp 
## ---
## Bayes factor type: BFlinearModel, JZS

summary

Summary of 2-Hz tf analysis:

  • P_load is the p value (from the ANOVA) for the main effect of load with 3 dfs.
  • BF01_load is the BF for a model without the main effect versus a model with the main effect (prior: Cauchy r scale = 0.5).
  • BF01_error% estimates the error of the BF in percent. For example, if BF = 10 and the error is 10%, then the BF is estimated to vary between 9 and 11.

N = 43

Variable P_load BF01_load BF01_error%
AmpSmN 0.626 4.077 0.589
AmpS 0.898 4.422 1.848