Column descriptions

group_session
Group session ID
task
Task ID.
station
The iMac that the participant was stationed at.
participant
Participant ID. A participant ID of -1 indicates an unknown participant. All rows that do not have values for the `task` column will have their participant ID set to -1. In the future, we will label some of these inter/pre/post task rows with the correct participant ID.
timestamp_unix
The Unix timestamp of the event.
timestamp_iso8601
The ISO-8601 timestamp of the event.

where participant = 131

View and edit SQL

Suggested facets: cp6, timestamp_iso8601 (date)

Link group_session station participant id task timestamp_unix timestamp_iso8601 aff1h f7 fc5 c3 t7 tp9 pz p3 p7 o1 o2 p8 p4 tp10 cz c4 t8 fc6 fcz f8 aff2h aux_gsr aux_ekg aff5h fc1 cp5 cp1 po9 oz po10 cp6 cp2 fc2 aff6h
exp_2022_10_24_12 lion 131 405948 saturn_a 1681770.7083444733 1970-01-20T11:09:30.708344+00:00 -18822.0 -32587.8 -13758.5 -23798.3 -34671.1 -43592.9 -23805.1 -7454.3 -34502.7 -34587.5 -13831.2 -22433.8 -10161.9 -56689.2 -21813.8 -11188.8 -26349.2 -27776.7 -11675.6 -36728.1 -23719.5 614054.0 -142932.0 -407752.0 -408068.0 -408047.0 -408399.0 -409407.0 -408892.0 -409234.0 -408404.0 -408388.0 -408248.0 -406823.0
exp_2022_10_24_12 lion 131 405949 hands_on_training 1681769.4961144705 1970-01-20T11:09:29.496114+00:00 -14095.0 -27866.2 -9033.4 -19072.6 -29934.7 -38849.0 -19138.8 -2756.64 -29791.6 -29926.9 -9133.11 -17671.0 -5445.21 -48954.5 -17061.5 -6444.78 -21524.5 -23022.4 -6967.04 -31960.7 -18999.6 614107.0 -127663.0 -407758.0 -408074.0 -408053.0 -408406.0 -409413.0 -408897.0 -409239.0 -408410.0 -408394.0 -408254.0 -406829.0
exp_2022_10_24_12 lion 131 405951 finger_tapping 1681767.0716544648 1970-01-20T11:09:27.071654+00:00 -1671.78 -15421.6 3422.56 -6666.41 -17479.1 -26389.9 -7025.59 9621.44 -17352.8 -17775.4 3259.86 -5152.64 6974.66 -20069.0 -4969.68 6010.5 -9003.81 -10546.1 5431.45 -19487.8 -6597.51 614110.0 -122760.0 -407764.0 -408080.0 -408059.0 -408410.0 -409419.0 -408903.0 -409244.0 -408415.0 -408400.0 -408260.0 -406835.0
exp_2022_10_24_12 lion 131 1654551 rest_state 168176.69012508378 1970-01-02T22:42:56.690125+00:00 -17327.2 -20844.2 -9618.9 -17059.8 -23256.2 -34166.9 -17912.2 -4029.49 -26323.8 -24443.3 -10292.3 -14581.1 -5523.68 -33917.6 -16447.0 -9807.57 -17466.0 -22891.3 -10217.0 -28919.9 -19802.1 646384.0 -222594.0 -407756.0 -408072.0 -408052.0 -408405.0 -409412.0 -408896.0 -409235.0 -408404.0 -408385.0 -408253.0 -406828.0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "eeg_raw" (
   [group_session] TEXT REFERENCES [group_session]([id]),
   [station] TEXT REFERENCES [station]([id]),
   [participant] INTEGER REFERENCES [participant]([id]),
   [id] INTEGER,
   [task] TEXT REFERENCES [task]([id]),
   [timestamp_unix] TEXT,
   [timestamp_iso8601] TEXT,
   [aff1h] FLOAT,
   [f7] FLOAT,
   [fc5] FLOAT,
   [c3] FLOAT,
   [t7] FLOAT,
   [tp9] FLOAT,
   [pz] FLOAT,
   [p3] FLOAT,
   [p7] FLOAT,
   [o1] FLOAT,
   [o2] FLOAT,
   [p8] FLOAT,
   [p4] FLOAT,
   [tp10] FLOAT,
   [cz] FLOAT,
   [c4] FLOAT,
   [t8] FLOAT,
   [fc6] FLOAT,
   [fcz] FLOAT,
   [f8] FLOAT,
   [aff2h] FLOAT,
   [aux_gsr] FLOAT,
   [aux_ekg] FLOAT,
   [aff5h] FLOAT,
   [fc1] FLOAT,
   [cp5] FLOAT,
   [cp1] FLOAT,
   [po9] FLOAT,
   [oz] FLOAT,
   [po10] FLOAT,
   [cp6] FLOAT,
   [cp2] FLOAT,
   [fc2] FLOAT,
   [aff6h] FLOAT,
   PRIMARY KEY ([group_session], [station], [participant], [id])
);
CREATE INDEX [idx_eeg_raw_task]
    ON [eeg_raw] ([task]);
CREATE INDEX [idx_eeg_raw_participant]
    ON [eeg_raw] ([participant]);
CREATE INDEX [idx_eeg_raw_station]
    ON [eeg_raw] ([station]);
CREATE INDEX [idx_eeg_raw_group_session]
    ON [eeg_raw] ([group_session]);