Effects of GV stimulation on EEG microstates

Tools: Python

Galvanic vestibular stimulation (GVS) is a type of electric stimulation that can be applied to the nerve near our ear that helps us keep our balance. We can feel certain frequencies like a change in our balance- closing our eyes, it feels almost exactly like rocking in a hammock. Higher frequencies aren't consciously perceptible but can be shown to have certain minor impacts on our brain state. Because GVS is a lot less invasive than other forms of brain stimulation, it's an interesting topic for research in Parkinson's and other diseases.

EEG data is high-dimensional, complex, and difficult to easily conceptualize. One way to visualize it is to reduce it into 'microstates', by saying at any given moment it best fits 1 of 4 discrete patterns. So instead of dozens of channels of sinusoidal data, we can approximate it with a sequence of states: `AABCADAB...`, which allows us to easily observe how the brain state changes over time.

The four different microstates, and a sequence of them.

We can extract the following features from these microstates:

We found some very minor correlations for these features. Using a random forest classifier, we we can attempt to predict from these features whether a patient is is Parkinsonian or not, as well as whether they are currently receiving GVS (a type of brain stimulation).

Accuracy of random forest classifier using microstate features

As classifiers, these are rather weak (60-70% test accuracy on binary data is not clinically useful). However, several of these features (mean duration of state A, mean duration of state D, and coverage of state C) are statistically significant in differentiating `ON` and `OFF` states, especially across different GVS stimulation frequencies. In particular, duration of state D is significant in differentiating people with Parkinson's from healthy controls.