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 = 134

View and edit SQL

Suggested facets: aff5h, fc1, cp1, po9, oz, cp6, cp2, fc2, aff6h, 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 134 405873 saturn_b 1681861.6255946853 1970-01-20T11:11:01.625595+00:00 -10464.0 -24223.5 -5381.79 -15450.0 -26285.7 -35209.7 -15655.3 875.391 -26136.8 -26411.0 -5488.57 -14002.3 -1794.29 -38373.6 -13684.0 -2787.84 -17891.5 -19365.3 -3332.86 -28310.0 -15370.3 612939.0 -112220.0 -407756.0 -408071.0 -408051.0 -408403.0 -409411.0 -408895.0 -409237.0 -408407.0 -408391.0 -408252.0 -406827.0
exp_2022_10_24_12 lion 134 405874 saturn_a 1681860.4133646823 1970-01-20T11:11:00.413365+00:00 -19360.7 -33133.7 -14300.9 -24339.3 -35224.6 -44149.7 -24326.0 -7994.68 -35054.6 -35120.4 -14362.7 -22972.4 -10692.2 -58070.7 -22330.2 -11712.5 -26837.2 -28299.2 -12212.5 -37252.6 -24254.3 612983.0 -106411.0 -407756.0 -408071.0 -408050.0 -408403.0 -409411.0 -408895.0 -409236.0 -408407.0 -408391.0 -408252.0 -406827.0
exp_2022_10_24_12 lion 134 405875 hands_on_training 1681859.2011346796 1970-01-20T11:10:59.201135+00:00 -12969.8 -26738.8 -7899.02 -17945.3 -28805.8 -37730.0 -18035.7 -1631.79 -28664.9 -28823.6 -7995.36 -16522.9 -4308.01 -46575.9 -15954.9 -5300.24 -20378.7 -21878.2 -5843.55 -30819.4 -17873.8 613044.0 -91750.9 -407761.0 -408077.0 -408057.0 -408408.0 -409415.0 -408901.0 -409242.0 -408413.0 -408397.0 -408258.0 -406833.0
exp_2022_10_24_12 lion 134 405877 affective_team 1681856.776674674 1970-01-20T11:10:56.776675+00:00 -1271.68 -15011.3 3836.28 -6259.08 -17077.6 -25985.7 -6623.29 10031.3 -16942.8 -17367.8 3679.69 -4726.56 7395.07 -19159.0 -4576.46 6431.45 -8579.2 -10124.6 5835.21 -19069.2 -6194.14 613069.0 -93411.8 -407759.0 -408074.0 -408053.0 -408405.0 -409413.0 -408898.0 -409239.0 -408410.0 -408394.0 -408254.0 -406830.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]);