import os, glob
import mne
Here I use a double nested list comprehension to make a list of subjects with their directories they are located in, using f strings I was able to concatinate to 3 decimal places the data for all 32 potential participants, and then filter that subjects list down by those that were present using k != [] to select for only subarrays that contained contents.
subjects = [k[0] for k in [glob.glob('2020-12-18-221738/nagl' + f"{i:03d}") for i in range(32)] if k !=[]]
subjects
['2020-12-18-221738/nagl002', '2020-12-18-221738/nagl003', '2020-12-18-221738/nagl004', '2020-12-18-221738/nagl005', '2020-12-18-221738/nagl006', '2020-12-18-221738/nagl007', '2020-12-18-221738/nagl008', '2020-12-18-221738/nagl009', '2020-12-18-221738/nagl010', '2020-12-18-221738/nagl016', '2020-12-18-221738/nagl017', '2020-12-18-221738/nagl018', '2020-12-18-221738/nagl019', '2020-12-18-221738/nagl020', '2020-12-18-221738/nagl021', '2020-12-18-221738/nagl026', '2020-12-18-221738/nagl028', '2020-12-18-221738/nagl029', '2020-12-18-221738/nagl030', '2020-12-18-221738/nagl031']
Here is a slightly modified version from my original group assignment: here I specify the path of the subjects fif file that is to be read in, using list slicing I cut from the last 7 characters until the end and concatinate together all other parts of the file location. Using mne.read_evokeds() and passing in the path I obtain the data that is stored for that participant and then pair that data with the subject to store as a dictionary.
evoked = {}
for i in range(len(subjects)):
path = subjects[i] + "/" + subjects[i][-7:] + "-ave.fif"
data = mne.read_evokeds(path)
data
evoked[subjects[i]] = data
Reading 2020-12-18-221738/nagl002/nagl002-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 37 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 21 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl003/nagl003-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 38 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 26 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl004/nagl004-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 31 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 36 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 32 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 20 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl005/nagl005-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 10 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 10 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 38 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 30 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl006/nagl006-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 37 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 36 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 30 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl007/nagl007-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 41 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 35 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl008/nagl008-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 41 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 38 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 36 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 28 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl009/nagl009-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 32 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 26 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl010/nagl010-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 34 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 36 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl016/nagl016-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 38 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 38 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 36 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 26 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl017/nagl017-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 29 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 29 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 24 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 25 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl018/nagl018-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 34 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 26 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl019/nagl019-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 31 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 27 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl020/nagl020-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 34 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 25 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl021/nagl021-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 37 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 30 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 35 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl026/nagl026-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 38 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl028/nagl028-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 32 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 35 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 25 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 26 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl029/nagl029-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 40 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 35 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl030/nagl030-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 37 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 36 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 34 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 18 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Reading 2020-12-18-221738/nagl031/nagl031-ave.fif ... Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Control/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Quiet/Violation/Correct) 0 CTF compensation matrices available nave = 39 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Control/Correct) 0 CTF compensation matrices available nave = 33 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied Found the data of interest: t = -199.22 ... 1000.00 ms (Noise/Violation/Correct) 0 CTF compensation matrices available nave = 22 - aspect type = 100 No projector specified for this dataset. Please consider the method self.add_proj. No baseline correction applied
The data is now ready for processing and plotting!
evoked
{'2020-12-18-221738/nagl002': [<Evoked | 'Quiet/Control/Correct' (average, N=37), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=21), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl003': [<Evoked | 'Quiet/Control/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=38), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=26), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl004': [<Evoked | 'Quiet/Control/Correct' (average, N=31), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=36), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=32), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=20), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl005': [<Evoked | 'Quiet/Control/Correct' (average, N=10), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=10), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=38), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=30), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl006': [<Evoked | 'Quiet/Control/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=37), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=36), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=30), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl007': [<Evoked | 'Quiet/Control/Correct' (average, N=41), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=35), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl008': [<Evoked | 'Quiet/Control/Correct' (average, N=41), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=38), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=36), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=28), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl009': [<Evoked | 'Quiet/Control/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=32), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=26), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl010': [<Evoked | 'Quiet/Control/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=34), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=36), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl016': [<Evoked | 'Quiet/Control/Correct' (average, N=38), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=38), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=36), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=26), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl017': [<Evoked | 'Quiet/Control/Correct' (average, N=29), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=29), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=24), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=25), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl018': [<Evoked | 'Quiet/Control/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=34), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=26), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl019': [<Evoked | 'Quiet/Control/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=31), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=27), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl020': [<Evoked | 'Quiet/Control/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=34), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=25), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl021': [<Evoked | 'Quiet/Control/Correct' (average, N=37), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=30), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=35), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl026': [<Evoked | 'Quiet/Control/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=38), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl028': [<Evoked | 'Quiet/Control/Correct' (average, N=32), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=35), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=25), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=26), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl029': [<Evoked | 'Quiet/Control/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=40), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=35), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl030': [<Evoked | 'Quiet/Control/Correct' (average, N=37), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=36), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=34), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=18), [-0.19922, 1] sec, 64 ch, ~473 kB>], '2020-12-18-221738/nagl031': [<Evoked | 'Quiet/Control/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Quiet/Violation/Correct' (average, N=39), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Control/Correct' (average, N=33), [-0.19922, 1] sec, 64 ch, ~473 kB>, <Evoked | 'Noise/Violation/Correct' (average, N=22), [-0.19922, 1] sec, 64 ch, ~473 kB>]}