Skip to content

brainhack-school2020/ADHDsubtypes_project

Repository files navigation

ADHDsubtypes_project

By Béatrice de Koninck & Pénélope Pelland-Goulet

This project was conducted for BrainHack school 2020 by Béatrice De Koninck & Pénélope Pelland-Goulet. We are both PhD students at Université de Montréal. Béatrice's research focuses on non-invasive brain stimulation techniques (NIBS) to modulate brain activity of patients with disorder consciousness. Prior to Brainhack school she had experience with EEG data processing and analysis, mainly using Brainstorm, but also knew a little bit of python and R. Pénélope's research focuses on high-school/college transition for students with ADHD and neuropsychological assessments. She has some experience in machine learning, but never coded before Brainhack school.

As well as learning all the tools and analysis that are listed at the bottom of this README, one of our goals was to create notebooks that are easy to use, and that can be easily understood and modified by people with little coding experience. In order to do this, we included very specific and detailed instructions and comments in our notebooks, educating the viewer on the code, the functions, the plots, and the results.

Abstract

ADHD subtypes are a controversial aspect of ADHD literature. Most subtypes classifications are based on behavioral and cognitive data but lack biomarkers. Using a multimodal dataset comprised of EEG data as well as self-reported symptoms and behavioral data, we tried to predict the DSM subtypes of each of our 96 participants. Since ADHD has been noted to present itself differently across sexes, we also tried to predict sex. At-rest eeg data and behavioral data proved to be poor predictors of the DSM subtypes. However, self-reported symptoms were a rich predictor of ADHD subtype. Additionally, predicting sex using EEG data yielded the highest decoding accuracies.

Installation

In order to reproduce those same analysis on your own computer, you will need to follow these steps:

  1. Clone the repo to your computer: git clone https://github.com/brainhack-school2020/ADHDsubtypes_project.git
  2. You will need Python and Jupyter Notebook.
  • Python *(this was based on 3.7.6 version and used via miniconda). For Python installation tutorials, refer to either conda or pip
  • Jupyter NoteBook Installation documentation
  1. Install the packages listed in the requirements.txt file. To install the packages required via conda follow these instructions based on this Documentation. For installing packages rather via pip you can refer to this instead. For pandas : conda install pandas (For a specific version install for any package via conda add =(version)), for example : conda install pandas=1.0.3 For scipy : conda install scipy
  2. If you are on Windows, you will need to edit a single line from the preprocessing.py file. On line 51, you have to replace df["id"]=path.split("/")[1].split(".")[0] by df["id"]=path.split("\")[1].split(".")[0]
  3. You can start running the notebooks! We suggest exploring them in this order: a) pre_preprocessing_analysis.ipynb b) Viz.ipynb c) Scalp_Plots.ipynb d) main_analyses.ipynb e) If you are short on time, you can skip steps b, c and d, and only vew Interactive_plots_deliverable.ipynb, which is a shortened version of our project, focusing on interactive data visualization.

Background

Attention deficit/hyperactivity disorder (ADHD) is one of the most common neurodevelopmental disorders among children and adolescents (Volkow, 2016). It manifests itself through a variety of cognitive and behavioral symptoms, such as (but not limited to) hyperactivity, lack attention, impulsivity, lack of inhibition and diminished working memory (Wilens, 2010). Long-term follow-up studies revealed that in 40 to 60% of children with ADHD, the disorder persists into adulthood (American Psychiatric Association, 2012; Hechtman, L., 1999; Klein, RG et al. 2012). Subtype classification of ADHD has not reach consensus whithin the litterature and research on the correlates of ADHD subtypes show incoherent findings. The most common grouping of adhd subtypes (which is also the DSM categorization) are (1) inattentive, (2) impulsive/Hyperactive and (3) mixed. Those subtypes are for the majority based on criteria derived from behavioral and-self-report data and lack of neurophysiological assessment is prominent(Hegerl et al. 2016; Olbrich, Dinteren & Arns, 2015).

Project definition

This project will aim to investigate the prediction potential of subtypes of ADHD between different types of measurements, those being behavioral measures, self-reporting measures and electrophysiological (EEG) data. More specifically, Principal components analysis (PCA) will be applied in order to achieve dimension reduction and k-nearest neighbor clustering will be used to predict the DSM ADHD subtypes according to each data type. An investigation of the predictive capacity of our 3 data types will be made, as well as observations about the potential prediction of gender using our dataset. For eeg data, an supplementary investigation will be conducted to compare prediction potential of ADHD subtypes according to electrode pools (paired according to brain regions) for brain oscillations of interest (measuring sepctral power).

Data

The sample consisted of 96 college students with an ADHD condition. Different types of measurements are included in this data sample. EEG data recording was performed using a 19-channel electrode cap (international 10-20 system) and consisted of eyes-opened at-rest recording of 5-minute duration. Time-frequency analyses were conducted for each electrode in order to extract amplitude means for each frequency band. Neuropsychological assessment measures included were Conners questionnaire (self-report) and IVA-II behavioral test. For classification comparison, ADHD subtypes identified by the Conners questionnaire are used. Those subtypes are hyperactive, inattentive and mixed, as described by the DSM-IV. More information about EEG preprocessing can be found here.

Methods

Sample :

  • Women (n = 57)
  • Men (n = 39)
  • Adhd subtype : hyperactive (n = 2), inattentive (n = 48), mixed (n = 46)

Types of measures

Conners questionnaire : standardized questionnaire. Comprizes 66 items about ADHD symptoms and behaviors. Answers are given using a Likert scale (0 = not at all/never and 3 = very often/very frequent). The items are compiled into 4 scales;

  • inattention/memory (IM)
  • hyperactivity/restlessness (HR)
  • impulsivity/emotional lability (IE)
  • problems with self concept (SC) (refers to self esteem).

These four scores are used as the 4 self report symptoms measures. Test-retest correlation for 18-29 years old ranges from 0,8 to 0,92 depending on items.

IVA-II : Behavioral test. Participants are presented with visual and auditive stimuli (numbers). If the stimulus is 1, whether it is visual or auditive, subjects must click as quickly as possible. If the stimulus is 2, whether it is visual or auditive, subjects must refrain from clickling. Stimuli are presented in a randomized order and at random time. 2 main scales are extracted, comprising 2 subscales each. 1st main scale is Attention Quotient (AQ) and its subscales are AQ auditive and AQ visual. 2nd main scale is Response Control Quotient (RCQ) and its subscales are RCQ auditive and RCQ visual.

Electroencephalography (EEG) : 19 electrodes caps were used, positioned according to the 10-20 international system and referenced to both ear lobes. Recordings lasted 5 minutes, were participants were instructed to be as still as possible and to keep their eyes opened. The Mitsar System 201 and WinEEG (Mitast) softwares were used for recording. Test-retest and split-half correlations were higher than 0,9.

Analyses files

All of these data were first preprocessed using preprocessing.py and pre_preprocess_analysis.ipynb.

Then, data description and visualization was done in the Viz.ipynb file.

Then, eeg scalp plots were created in the Scalp_Plots.ipynb, where statistical tests were also computed on eeg data.

Finally, the main analysis can be found in the main_analyses.ipynb file. They consist of Principal Component Analysis, a dimension reduction technique that was applied to the 3 types of data in order to extract possible pertinent features that were later used in the classification of ADHD subtypes and gender. Classification was made using a k-nearest neighbors method, with and without PCA, in order to investigate the effect of PCAs on classification of gender and ADHD.

Results

We were interested in sex differences and ADHD subtype differences, so we started by plotting their scalp distribution. White electrodes indicate the significant differences (computed via Mann-Whitney non parametric test and corrected with Bonferroni).

Here is the scalp plot showing sex differences.

And here are the scalp plots showing subtype differences.

PCA analysis and KNN classification yielded interesting results. First, we compared the performance of a k-nearest neighbors clasification using PCA as features versus using the data without dimension reduction. Here are the results: First, we tried to predict ADHD subtype (inattentive vs combined) using eeg data, separating pools of electrodes. None of the classifications were statistically higher than chance level (50%).

Electrode pool Knn result using PCA Knn result without PCA
Central Acccuracy = 47%, p = 0.26 Accuracy: 52.6%, p = 0.3
Temporal Accuracy = 36%, p = 0.54 Accuracy = 42.1%, p = 0.16
Occipital Accuracy = 47.4%, p = 0.861 Accuracy = 52.6%, p = 0.624
Frontal Accuracy = 36.84%, p = 0.74 Accuracy = 26.3%, p = 0.89
Parietal Accuracy = 52.6%, p = 0.94 Accuracy = 36.8%, p = 0.396

These results might not be surprising, considering PCA resulted in very similar principal components which are hard to distinguish, for all electrode pools. Here's an example of 2D visualization of PCA, on the frontal electrode pool.

Second, we tried to predict ADHD subtype again, this time using Conners scale (cognitive data) and IVA-II (behavioral data) separately, with and without PCA. Conners scale could predict ADHD subtype with a precision of 73,68%, with or without PCA. IVA-II classificaiton was not significally higher than chance level (50%).

Feature Knn result using PCA Knn result without PCA
Conners Scale Acccuracy = 73.68%, p = 0.009 Accuracy: 73.68%, p = 0.019
IVA-II Accuracy = 52.6%, p = 0.67 Accuracy = 52.6%, p = 0.76

Finally, we also tried predicting sex according to Eeg distribution. This classification yielded the best results, with and without PCA.

Feature Knn result using PCA Knn result without PCA
EEG Acccuracy = 87.4%, p = 0.009 Accuracy: 85.79%, p = 0.009

Here is the confusion matrix for the classification of sex (using PCA):

The tools we learned through this project

  • Git and GitHub
  • Bash shell
  • Dimension reduction via PCA
  • Machine learning ( KNN classification)
  • Jupyter Notebook/Jupyter Slides
  • Python packages : pandas, SNFpy, scikit-learn, numpy, scipy, etc.
  • Visualization packages (via python): seaborn, plotly, matplotlib, hytools, etc.

Deliverables

At the end of this project, we will have:

  • A Jupyter notebook markdown describing thoroughly all the steps of our project
  • Python script of main analyses
  • Complete published repository access to all commits and changes of our projects
  • An interactive platform to present the different data and analysis

Week 3 deliverable: data visualization

This deliverable was done entirely as a team. Penelope developed the visualization for Conners (cognitive data) and IVA-II (behavioral data) (interactive plots of distribution for each data type), and Beatrice developed the script for eeg data visualization (interactive plot with facets of spectral power distribution as well as an example of 2D visualization of PCA). Scalp plots were created jointly.

Please make sure to see the requirements_week3deliverable.txt, to pull Data file (with all the necessary files) and follow instruction in the notebook (linked). The excel_files folder has to be moved from the Data folder to the same directory as the notebook, in order for the path to stay the same.

Progress overview

  • As of may 26 2020; the data has been preprocessed and organized into pandas dataframes.
  • As of may 29 2020; the jupyter notebook for data visualization is well advanced; and we are working on our SNF.
  • As of june 1st; we decided to let go of our SNF analysis and concentrate our efforts on clustering, PCA and visualization, as it seems far more appropriate to our data.
  • As of june 8th; we have completed our data analysis and data visualization, what is left to do before final submission is some reorganisation of our repository and simplification of our code.

Submission week :

Deliverables :

  • main_analyses.ipynb: jupyter notebook of all data wrangling, some interactive data visualization, and complete PCAs, KNN analyses (with comparisons of KNN without PCAs) on all 3 types of data
  • Viz.ipynb : jupyter notebook of all the visualisation and descriptive stats made for all 3 datasets
  • Scalp_Plots.ipynb : jupyter notebook for scalp plots visualization and stastitical analysis (section with topography maps with significance masks for electrode comparisons).
  • preprocessing.py : File with all functions needed to run all the notebooks created
  • requirement.txt : libraries required for this project

References

  1. Galarnyk, M. (2017, December 4th). PCA using Python (scikit-learn). Retrieved from https://towardsdatascience.com/pca-using-python-scikit-learn-e653f8989e60
  2. Harel, Y. (2020, May 25). hytools. Retrieved from https://github.com/hyruuk/hytools/tree/master/hytools
  3. Hasler, R., Perroud, N., Meziane, H. B., et al. (2016). Attention-related EEG markers in adult ADHD. Neuropsychologia.87:120‐133. doi:10.1016/j.neuropsychologia.2016.05.008
  4. Ingram, S., Hechtman, L. & Morgenstern, G. (1999). Outcome issues in ADHD: Adolescent an dadult long-term outcome. Developmental Disabilities Research Reviews.5(3), 243-250. https://doi.org/10.1002/(SICI)1098-2779(1999)5:3<243::AID-MRDD11>3.0.CO;2-D4.
  5. La Malfa, G., Lassi, S., Bertelli, M., Pallanti, S., Albertini, G. (2008) Detecting attention-deficit/hyperactivity disorder (ADHD) in adults with intellectual disability The use of Conners' Adult ADHD Rating Scales (CAARS). Res Dev Disabil.29(2):158‐164. doi:10.1016/j.ridd.2007.02.002
  6. Navlani, A. (2018, August 2nd). KNN Classification using Scikit-learn. Retrieved from https://www.datacamp.com/community/tutorials/k-nearest-neighbor-classification-scikit-learn
  7. Olbrich, S., van Dinteren, R., Arns, M. (2015). Personalized Medicine: Review and Perspectives of Promising Baseline EEG Biomarkers in Major Depressive Disorder and Attention Deficit Hyperactivity Disorder. Neuropsychobiology.72(3-4):229‐240. doi:10.1159/000437435
  8. Sandford, J. A., & Turner, A. (2000). Integrated visual and auditory continuous performance test manual. Richmond, VA: Brain Train.
  9. Sharma, A. (2020, January 1st). Principal Component Analysis in Python. Retrieved from https://www.datacamp.com/community/tutorials/principal-component-analysis-in-python
  10. Sibley, M. H., Pelham, W. E., Jr., Molina, B. S. G., Gnagy, E. M., Waschbusch, D. A., Garefino, A. C., . . . Karch, K. M. (2012). Diagnosing ADHD in adolescence. Journal of Consulting and Clinical Psychology, 80(1), 139-150. http://dx.doi.org/10.1037/a0026577
  11. Wilens, T. E., & Spencer, T. J. (2010). Understanding attention-deficit/hyperactivity disorder from childhood to adulthood. Postgraduate medicine, 122(5), 97–109. https://doi.org/10.3810/pgm.2010.09.2206
  12. Volkow, N. D., & Swanson, J. M. (2013). Clinical practice: Adult attention deficit-hyperactivity disorder. The New England journal of medicine, 369(20), 1935–1944. https://doi.org/10.1056/NEJMcp1212625