Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
0
914
Public Domain Dedication and License (PDDL)
Preamble
The Open Data Commons – Public Domain Dedication and Licence is a document intended to allow you to freely share, modify, and use this work for any purpose and without any restrictions. This licence is intended for use on databases or their contents (“data”), either together or individually.
Many databases are covered by copyright. Some jurisdictions, mainly in Europe, have specific special rights that cover databases called the “sui generis” database right. Both of these sets of rights, as well as other legal rights used to protect databases and data, can create uncertainty or practical difficulty for tho...
The position of the recipient of the work
Because this document places the database and its contents in or as close as possible within the public domain, there are no restrictions or requirements placed on the recipient by this document. Recipients may use this work commercially, use technical protection measures, combine this data or database with other datab...
The position of the dedicator of the work
Copyright law, as with most other law under the banner of “intellectual property”, is inherently national law. This means that there exists several differences in how copyright and other IP rights can be relinquished, waived or licensed in the many legal jurisdictions of the world. This is despite much harmonisation of...
The purpose of this document is to enable rightsholders to place their work into the public domain. Unlike licences for free and open source software, free cultural works, or open content licences, rightsholders will not be able to “dual license” their work by releasing the same work under different licences. This is b...
This document can cover either or both of the database and its contents (the data). Because databases can have a wide variety of content – not just factual data – rightsholders should use the Open Data Commons – Public Domain Dedication & Licence for an entire database and its contents only if everything can be placed ...
Rightsholders can also use this document to cover any copyright or database rights claims over only a database, and leave the contents to be covered by other licences or documents. They can do this because this document refers to the “Work”, which can be either – or both – the database and its contents. As a result, ri...
Just like any licence or other document dealing with intellectual property, rightsholders should be aware that one can only license what one owns. Please ensure that the rights have been cleared to make this material available under this document.
This document permanently and irrevocably makes the Work available to the public for any use of any kind, and it should not be used unless the rightsholder is prepared for this to happen.
Part I: Introduction
The Rightsholder (the Person holding rights or claims over the Work) agrees as follows:
1.0 Definitions of Capitalised Words
“Copyright” – Includes rights under copyright and under neighbouring rights and similarly related sets of rights under the law of the relevant jurisdiction under Section 6.4.
“Data” – The contents of the Database, which includes the information, independent works, or other material collected into the Database offered under the terms of this Document.
“Database” – A collection of Data arranged in a systematic or methodical way and individually accessible by electronic or other means offered under the terms of this Document.
“Database Right” – Means rights over Data resulting from the Chapter III (“sui generis”) rights in the Database Directive (Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases) and any future updates as well as any similar rights available in the relevant...
“Document” – means this relinquishment and waiver of rights and claims and back up licence agreement.
“Person” – Means a natural or legal person or a body of persons corporate or incorporate.
“Use” – As a verb, means doing any act that is restricted by Copyright or Database Rights whether in the original medium or any other; and includes modifying the Work as may be technically necessary to use it in a different mode or format. This includes the right to sublicense the Work.
“Work” – Means either or both of the Database and Data offered under the terms of this Document.
“You” – the Person acquiring rights under the licence elements of this Document.
Words in the singular include the plural and vice versa.
2.0 What this document covers
2.1. Legal effect of this Document. This Document is:
a. A dedication to the public domain and waiver of Copyright and Database Rights over the Work; and
b. A licence of Copyright and Database Rights over the Work in jurisdictions that do not allow for relinquishment or waiver.
2.2. Legal rights covered.
a. Copyright. Any copyright or neighbouring rights in the Work. Copyright law varies between jurisdictions, but is likely to cover: the Database model or schema, which is the structure, arrangement, and organisation of the Database, and can also include the Database tables and table indexes; the data entry and outp...
b. Database Rights. Database Rights only extend to the extraction and re-utilisation of the whole or a substantial part of the Data. Database Rights can apply even when there is no copyright over the Database. Database Rights can also apply when the Data is removed from the Database and is selected and arranged in ...
2.2 Rights not covered.
End of preview. Expand in Data Studio

Gruendler2009: EEG Obsessive-Compulsive Disorder Estimation Dataset with Flanker Task

The dataset Gruendler2009 originates from an EEG experiment that examined the relationship between obsessive–compulsive (OC) symptomatology and error-related brain activity. Participants were 46 undergraduate students selected based on their scores on the Obsessive–Compulsive Inventory-Revised (OCI-R), with groups categorized as high or low OC (a score of 21 being the boundary).

The experiment consisted of a flanker task to elicit ERNs from motor errors in a response conflict paradigm. Specifically, participants were shown a 5-letter string like "QQQQQ" or "QQOQQ". Within a 1-second time-window, they then had to press a left or right button, depending on the letter in the middle of the string. The assignment of which button to press for a given middle letter was swapped between blocks of experiments.

The EEG data were recorded using a 64-channel EEG + 2-channel EOG + 1-channel EKG setup. Demographic and psychometric data (including the Beck Depression Inventory) were collected to control for confounds.

Paper

Gründler, T. O., Cavanagh, J. F., Figueroa, C. M., Frank, M. J., & Allen, J. J. (2009). Task-related dissociation in ERN amplitude as a function of obsessive–compulsive symptoms. Neuropsychologia, 47(8-9), 1978-1987.

DISCLAIMER: We (DISCO) are NOT the owners or creators of this dataset, but we merely uploaded it here, to support our's (EEG-Bench) and other's work on EEG benchmarking.

Dataset Structure

  • data/ contains the annotated EEG experiment data in .cnt format.
  • DMDX_Codes_Flankers_Only.rtf (more compact) and Flankers_Letters_Task_Babcock.rtf (more verbose) provide descriptions of the experiments.
  • Info.xlsx contains various information about the subjects (identified by the ID column), such as sex, age, Beck Depression Inventory (BDI), Obsessive-Compulsive Inventory (OCI), Speilberger Trait Anxiety Inventory (TAI), Speilberger State Anxiety Inventory (SAI) and Carver & White BIS/BAS scales.
  • scripts/ contains MATLAB scripts that might provide further information about the data.

Filename Format

[PID]flankers.cnt      (or [PID]flankers_ready.cnt)

where PID is the participant's ID as used in Info.xlsx's ID column.

NOTE that the flankers_ready.cnt files may have been preprocessed, while the flankers.cnt may be the original raw EEG files.

Fields in each File

A .cnt file can be read in python as follows:

import mne
raw = mne.io.read_raw_cnt(filepath)

Now, raw.get_data(units='uV') yields a numpy array of shape (#channels, time_len) in micro-Volt units.

Some general info can be inspected with raw.info, such as the sampling rate (raw.info["sfreq"]).

The channel names (in their correct order) can be seen via raw.ch_names.

Events can be read with

events_list, events_dict = mne.events_from_annotations(raw)

where events_dict contains the mapping of the original event types (like "126") to event IDs in [1,2,..., num_event_types], the latter of which are used in events_list.

events_list is a list of events, ordered by time. Each entry e = [timestamp, (not important), event ID] consists of the time of the event onset timestamp that refers to the time_len dimension in the raw.get_data() EEG array, as well as the event-ID.

(See the https://mne.tools/stable/generated/mne.io.Raw.html documentation for more details.)

(Inferred) Meaning of the Event Types

The meaning of the following event types should be inferrable from DMDX_Codes_Flankers_Only.rtf and Flankers_Letters_Task_Babcock.rtf:

  • 50: A fixation cross/asterisk is shown on the monitor in front of the participant
  • 110: A message "WRONG" is displayed, indicating that the participant did not press a button in time (or also that the participant pressed the wrong button, but I'm not 100% sure about that)


  • 111: Letters "KKKKK" are shown on the screen, and the participant is asked to press the left button when "K" is the center letter and the right button when "R" is the center letter.
  • 112: Letters "KKRKK" are shown on the screen, and the participant is asked to press the left button when "K" is the center letter and the right button when "R" is the center letter.
  • 113: Letters "RRKRR" are shown on the screen, and the participant is asked to press the left button when "K" is the center letter and the right button when "R" is the center letter.
  • 114: Letters "RRRRR" are shown on the screen, and the participant is asked to press the left button when "K" is the center letter and the right button when "R" is the center letter.


  • 121: Letters "MMMMM" are shown on the screen, and the participant is asked to press the left button when "M" is the center letter and the right button when "N" is the center letter.
  • 122: Letters "MMNMM" are shown on the screen, and the participant is asked to press the left button when "M" is the center letter and the right button when "N" is the center letter.
  • 123: Letters "NNMNN" are shown on the screen, and the participant is asked to press the left button when "M" is the center letter and the right button when "N" is the center letter.
  • 124: Letters "NNNNN" are shown on the screen, and the participant is asked to press the left button when "M" is the center letter and the right button when "N" is the center letter.


  • 125: Letters "MMMMM" are shown on the screen, and the participant is asked to press the left button when "N" is the center letter and the right button when "M" is the center letter.
  • 126: Letters "MMNMM" are shown on the screen, and the participant is asked to press the left button when "N" is the center letter and the right button when "M" is the center letter.
  • 127: Letters "NNMNN" are shown on the screen, and the participant is asked to press the left button when "N" is the center letter and the right button when "M" is the center letter.
  • 128: Letters "NNNNN" are shown on the screen, and the participant is asked to press the left button when "N" is the center letter and the right button when "M" is the center letter.


  • 131: Letters "FFFFF" are shown on the screen, and the participant is asked to press the left button when "F" is the center letter and the right button when "E" is the center letter.
  • 132: Letters "FFEFF" are shown on the screen, and the participant is asked to press the left button when "F" is the center letter and the right button when "E" is the center letter.
  • 133: Letters "EEFEE" are shown on the screen, and the participant is asked to press the left button when "F" is the center letter and the right button when "E" is the center letter.
  • 134: Letters "EEEEE" are shown on the screen, and the participant is asked to press the left button when "F" is the center letter and the right button when "E" is the center letter.


  • 135: Letters "FFFFF" are shown on the screen, and the participant is asked to press the left button when "E" is the center letter and the right button when "F" is the center letter.
  • 136: Letters "FFEFF" are shown on the screen, and the participant is asked to press the left button when "E" is the center letter and the right button when "F" is the center letter.
  • 137: Letters "EEFEE" are shown on the screen, and the participant is asked to press the left button when "E" is the center letter and the right button when "F" is the center letter.
  • 138: Letters "EEEEE" are shown on the screen, and the participant is asked to press the left button when "E" is the center letter and the right button when "F" is the center letter.


  • 141: Letters "QQQQQ" are shown on the screen, and the participant is asked to press the left button when "Q" is the center letter and the right button when "O" is the center letter.
  • 142: Letters "QQOQQ" are shown on the screen, and the participant is asked to press the left button when "Q" is the center letter and the right button when "O" is the center letter.
  • 143: Letters "OOQOO" are shown on the screen, and the participant is asked to press the left button when "Q" is the center letter and the right button when "O" is the center letter.
  • 144: Letters "OOOOO" are shown on the screen, and the participant is asked to press the left button when "Q" is the center letter and the right button when "O" is the center letter.


  • 145: Letters "QQQQQ" are shown on the screen, and the participant is asked to press the left button when "O" is the center letter and the right button when "Q" is the center letter.
  • 146: Letters "QQOQQ" are shown on the screen, and the participant is asked to press the left button when "O" is the center letter and the right button when "Q" is the center letter.
  • 147: Letters "OOQOO" are shown on the screen, and the participant is asked to press the left button when "O" is the center letter and the right button when "Q" is the center letter.
  • 148: Letters "OOOOO" are shown on the screen, and the participant is asked to press the left button when "O" is the center letter and the right button when "Q" is the center letter.


  • 151: Letters "VVVVV" are shown on the screen, and the participant is asked to press the left button when "V" is the center letter and the right button when "U" is the center letter.
  • 152: Letters "VVUVV" are shown on the screen, and the participant is asked to press the left button when "V" is the center letter and the right button when "U" is the center letter.
  • 153: Letters "UUVUU" are shown on the screen, and the participant is asked to press the left button when "V" is the center letter and the right button when "U" is the center letter.
  • 154: Letters "UUUUU" are shown on the screen, and the participant is asked to press the left button when "V" is the center letter and the right button when "U" is the center letter.


  • 155: Letters "VVVVV" are shown on the screen, and the participant is asked to press the left button when "U" is the center letter and the right button when "V" is the center letter.
  • 156: Letters "VVUVV" are shown on the screen, and the participant is asked to press the left button when "U" is the center letter and the right button when "V" is the center letter.
  • 157: Letters "UUVUU" are shown on the screen, and the participant is asked to press the left button when "U" is the center letter and the right button when "V" is the center letter.
  • 158: Letters "UUUUU" are shown on the screen, and the participant is asked to press the left button when "U" is the center letter and the right button when "V" is the center letter.


  • 161: Letters "TTTTT" are shown on the screen, and the participant is asked to press the left button when "T" is the center letter and the right button when "I" is the center letter.
  • 162: Letters "TTITT" are shown on the screen, and the participant is asked to press the left button when "T" is the center letter and the right button when "I" is the center letter.
  • 163: Letters "IITII" are shown on the screen, and the participant is asked to press the left button when "T" is the center letter and the right button when "I" is the center letter.
  • 164: Letters "IIIII" are shown on the screen, and the participant is asked to press the left button when "T" is the center letter and the right button when "I" is the center letter.


  • 165: Letters "TTTTT" are shown on the screen, and the participant is asked to press the left button when "I" is the center letter and the right button when "T" is the center letter.
  • 166: Letters "TTITT" are shown on the screen, and the participant is asked to press the left button when "I" is the center letter and the right button when "T" is the center letter.
  • 167: Letters "IITII" are shown on the screen, and the participant is asked to press the left button when "I" is the center letter and the right button when "T" is the center letter.
  • 168: Letters "IIIII" are shown on the screen, and the participant is asked to press the left button when "I" is the center letter and the right button when "T" is the center letter.

License

By the original authors of this work, this work has been licensed under the PDDL v1.0 license (see LICENSE.txt).

Downloads last month
102