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 = "-2"
✎ View and edit SQL
This data as json, copyable
0 records
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]);