Individual Alpha Frequency

External Email - Use Caution

Hi everyone,

I am a relative beginner with MNE (and EEG) and I don't know what's
the recommended way to analyse the alpha band.

So, I would like to know if it is recommended to determine the
frequency bands of interest for each subject, by highlighting the
INDIVIDUAL ALPHA FREQUENCY PEAK (IAF, ref Klimesch, 1999).

If it is the case, how can I do that? Maybe trought a standard FFT
procedure, with the main of define the frequency bin having a maximum power
density averaged over all electreodes and conditions in the range from 6 to
14 Hz, in line with the guidelines by Klimesch (1999) ?

Any suggestion are apprecieted!
Thank you !!!
Sincerly,
Jasmina
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20180427/5882b717/attachment.html

Hi Jasmina,

plotting the frequency spectrum, averaged across all electrodes and conditions, is really easy. When you load the data you have a Raw object, for example:

raw = mne.io.read_raw(?) # the actual function you need to call depends on the dataformat you are using (.fif, .edf, .bdf, something else?)

Then, you can just do:

raw.plot_psd()

Boom! Frequency spectrum :slight_smile:

best,
Marijn.

        External Email - Use Caution

Hi everyone,
I am a relative beginner with MNE (and EEG) and I don't know what's the recommended way to analyse the alpha band.
So, I would like to know if it is recommended to determine the frequency bands of interest for each subject, by highlighting the INDIVIDUAL ALPHA FREQUENCY PEAK (IAF, ref Klimesch, 1999).
If it is the case, how can I do that? Maybe trought a standard FFT procedure, with the main of define the frequency bin having a maximum power density averaged over all electreodes and conditions in the range from 6 to 14 Hz, in line with the guidelines by Klimesch (1999) ?

Any suggestion are apprecieted!
Thank you !!!
Sincerly,
Jasmina
_______________________________________________
Mne_analysis mailing list
Mne_analysis at nmr.mgh.harvard.edu
https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis

The information in this e-mail is intended only for the person to whom it is
addressed. If you believe this e-mail was sent to you in error and the e-mail
contains patient information, please contact the Partners Compliance HelpLine at
http://www.partners.org/complianceline . If the e-mail was sent to you in error
but does not contain patient information, please contact the sender and properly
dispose of the e-mail.

-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 1386 bytes
Desc: not available
Url : http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20180427/cb6b6ad9/attachment.bin
-------------- next part --------------
        External Email - Use Caution
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20180427/cb6b6ad9/attachment.html

External Email - Use Caution

If you just want the PAF or CoG measurements, check out a 'modern' perspective (using a very old technique for spectra from chemistry, Savitzky-Golay filtering):

Corcoran, A. W., Alday, P. M., Schlesewsky, M., & Bornkessel-Schlesewsky, I. (2018). Toward a reliable, automated method of individual alpha frequency (IAF) quantification. Psychophysiology, e13064. doi:10.1111/psyp.13064

implemented on top of MNE as part of the philistine package:

https://pypi.org/project/philistine/

Extending Marijn's example:

from philistine.mne import savgol_iaf
help(savgol_iaf)

savgol_iaf(raw)

The Q-factor weighting in the paper isn't yet implemented in Python, so all channels are weighted equally.

External Email - Use Caution

Thank you very much for your advice and your time!
Best wishes,
Jasmina

2018-04-27 19:57 GMT+02:00 Alday, Phillip <Phillip.Alday at mpi.nl>:

If you just want the PAF or CoG measurements, check out a 'modern'
perspective (using a very old technique for spectra from chemistry,
Savitzky-Golay filtering):

Corcoran, A. W., Alday, P. M., Schlesewsky, M., & Bornkessel-Schlesewsky,
I. (2018). Toward a reliable, automated method of individual alpha
frequency (IAF) quantification. Psychophysiology, e13064.
doi:10.1111/psyp.13064

implemented on top of MNE as part of the philistine package:

philistine · PyPI

Extending Marijn's example:

from philistine.mne import savgol_iaf
help(savgol_iaf)

savgol_iaf(raw)

The Q-factor weighting in the paper isn't yet implemented in Python, so
all channels are weighted equally.

Hi Jasmina,

plotting the frequency spectrum, averaged across all electrodes and conditions, is really easy. When you load the data you have a Raw object, for example:

raw = mne.io.read_raw(?) # the actual function you need to call depends on the dataformat you are using (.fif, .edf, .bdf, something else?)

Then, you can just do:

raw.plot_psd()

Boom! Frequency spectrum :slight_smile:

best,
Marijn.

        External Email - Use Caution

Hi everyone,
I am a relative beginner with MNE (and EEG) and I don't know what's the recommended way to analyse the alpha band.
So, I would like to know if it is recommended to determine the frequency bands of interest for each subject, by highlighting the INDIVIDUAL ALPHA FREQUENCY PEAK (IAF, ref Klimesch, 1999).
If it is the case, how can I do that? Maybe trought a standard FFT procedure, with the main of define the frequency bin having a maximum power density averaged over all electreodes and conditions in the range from 6 to 14 Hz, in line with the guidelines by Klimesch (1999) ?

Any suggestion are apprecieted!
Thank you !!!
Sincerly,
Jasmina
_______________________________________________
Mne_analysis mailing listMne_analysis at nmr.mgh.harvard.eduhttps://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis

The information in this e-mail is intended only for the person to whom it is
addressed. If you believe this e-mail was sent to you in error and the e-mail
contains patient information, please contact the Partners Compliance HelpLine athttp://www.partners.org/complianceline . If the e-mail was sent to you in error
but does not contain patient information, please contact the sender and properly
dispose of the e-mail.

        External Email - Use Caution

_______________________________________________
Mne_analysis mailing listMne_analysis at nmr.mgh.harvard.eduhttps://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis

The information in this e-mail is intended only for the person to whom it is
addressed. If you believe this e-mail was sent to you in error and the e-mail
contains patient information, please contact the Partners Compliance HelpLine athttp://www.partners.org/complianceline . If the e-mail was sent to you in error
but does not contain patient information, please contact the sender and properly
dispose of the e-mail.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20180502/8d95f79e/attachment-0001.html