Seeking Advice on SEEG Time-Frequency Analysis Workflow

Hi everyone,

I’m currently working on analyzing SEEG data, specifically comparing power time series in different conditions (e.g., positive vs. negative emotion) within a specific frequency band, such as high gamma. I’d like to get some advice on my analysis pipeline and the best practices for baseline correction and averaging methods. Here’s the current workflow I’m following:

1. Epoch Extraction and Baseline Correction

  • I first extract epochs and apply baseline correction by subtracting the mean of the baseline period (pre-stimulus) from the entire epoch.

2. Time-Frequency Computation and Baseline Correction

  • For each electrode and epoch, I compute the time-frequency representation, obtaining a 2D array of shape (n_freqs x n_timepoints).
  • I then perform baseline correction on the time-frequency data, but I’m unsure which method is most appropriate (currently using zlogratio). MNE offers several options such as mean, ratio, logratio, zscore, and zlogratio.
  • After baseline correction, I average power within the high gamma frequency range and then average across epochs.
  • Thus I get a n_electrodes * n_timepoints data for each condition.

However, I have come across an alternative approach:

  • Averaging epochs first within each condition, then computing the time-frequency representation, followed by baseline correction and averaging within the high gamma band.
  • These two approaches yield noticeably different results, and I’m uncertain which is more appropriate, nd what kinds of baseline correction methods I should use under the two approaches.

3. Electrode-Level Averaging and Further Baseline Considerations

  • Finally, I average the data across electrodes within the same condition (across subjects).
  • My concern here is whether I should perform another round of baseline correction before averaging electrodes. If I skip this step, I often observe that the baseline period in the final results deviates significantly from zero.

I would really appreciate any insights or recommendations on the following:

  • Which time-frequency baseline correction method most suitable for different pipelines/stages?
  • Is it preferable to perform time-frequency analysis on individual epochs first and then average, or should epochs be averaged before computing time-frequency representations?
  • Should baseline correction be reapplied after electrode-level averaging, or would this introduce bias?

Thanks in advance for any suggestions or shared experiences!

All the baseline correction method implemented in MNE have been used in publications and you can read the methods publications about the pros and cons of each. In the end, it’s a mostly empircal question that has been studied fairly well. I’d recommend Frontiers | Single-Trial Normalization for Event-Related Spectral Decomposition Reduces Sensitivity to Noisy Trials.

Time frequency is typically done before averaging.

I’m not sure what the motivation is for a second electrode-level baseline correction is, usually this variance would be accounted for in the statistics e.g. anova.

1 Like

Thank you, Alex!
Regarding electrode-level baseline correction, I’m concerned that different electrodes might have varying baselines. I’m not sure whether I should manually adjust for this.

Hello, I am also performing time-frequency analysis on EEG data, and I have noticed that even after baseline correction (regardless of the method used, such as percentage-based correction), the results still deviate from zero at baseline, especially in the gamma frequency band. Have you encountered this issue?

Hi,

If baseline correction boils down to computing an average value for the baseline period, then it’s normal that after subtracting it you still get fluctuations unless all time points in the baseline period have the same value.

Thank you! Should I use the average baseline of all trials for correction, or should I correct each trial with its own baseline and then average them? Which approach is more appropriate?
The second method, compared to the first, results in the baseline being closer to 0, but it seems to introduce greater variance.

I’d say usually baseline correction is done per trial. It depends on what you are trying to do though I guess.

Got it, thank you very much for your help.

Most of the studies I’ve read and the methods article recommended by Alex suggest above doing the correction at the trial level first and then averaging.

I applied trial-level baseline correction to individual subjects’ SEEG TFR (morlet for TFR) data first and then averaged them. Afterward, I averaged the electrode data from the same ROI across all subjects.

However, the results are strange anyway. When using zlogratio, the baseline is completely off from 0 (see below).

When using z-score or other methods like mean, the baseline looks normal, though the post-stimuli data still appears odd (see below example, the TFR frequency parameter is slightly different but the tendency is the same when using the previous frequency parameter). I’m not sure if this is normal.

Do you have any suggestions? Thank you!

Hi,

The last example looks normal to me, no? Didn’t you expect some activity changes following the stimulus?

Regarding the zlogratio, it definitely looks weird at first glance. I don’t know what it would be expected to look like though.

It’s difficult to judge without context about the recordings and some code.

1 Like

Thanks for your reply!

These data were collected when the subjects were viewing positive/negative/neutral images, and the example TFR data shown above refer to the negative image viewing.

The baseline looks normal under the zscore method above. But I’m confused that the TFR looks quite similar across all ROIs (including Amygdala, Insula, Hippocampus / OFC for now)/ conditions; they are always all positive, and the low-frequency signal near 0- 0.5s is stronger than other locations, like the above example.

As for zlogratio, I don’t understand why the baseline deviates completely from 0 and why the power after onset is always lower than the baseline (similar pattern in all ROIs/ conditions).

I wonder if this could be a problem with the data itself, or with my analysis process/parameters, or both?

I am not sure about the zlogratio either. Depends on the TFR values you have. I’d do some manual calculations if I were you to figure this out.

As for your analysis more generally I am not sure I understand:

  1. In terms of signal modulations what you are expecting to see (based on literature),
  2. How exactly do you perform the TFR transformation,
  3. Why are you looking at all frequencies in the plots, but in the first post you say that you are interested in and perform averaging in the high gamma band.

If you say all look similar across ROIs and conditions, first make sure your data are indeed different, e.g. not loading the same data or something. Then, I would make a simplified analysis and try to look step-by-step what is happening.

I initially conducted other analyses based on the TFR data, but I found the results somewhat strange, so I came back to check the simplest condition differences.

  1. I expected to see significant differences in power within certain frequency bands across conditions in some brain regions, such as the insula and amygdala. (For example, in Spatiotemporal dynamics of affective picture processing revealed by intracranial high-gamma modulations, Figure 3, significant high-gamma differences between unpleasant, pleasant, and neutral conditions were observed in several electrodes.)

  2. I used Morlet wavelets as follows (I tried different frequency and other parameters, but they did not show a major impact):

    tfr = epochs.compute_tfr(
        method="morlet",
        freqs=np.logspace(np.log10(4), np.log10(150), num=80),
        n_cycles=np.logspace(np.log10(3), np.log10(30), num=80),
        average=False,
    )
    
  3. This is more of an exploratory analysis, and I assume the all freqneucy resutls roughly reflects the overall trends across different frequency bands after averaging? So, the example figures I provided above show the full frequency range, but I also have time series results obtained by averaging within specific frequency bands.

Finally, yes, I have double-checked multiple times to ensure there are no issues with data import or something like this. What kind of simplified analysis are you referring to? Thanks for your suggestions!

I see.

I guess I would do an analysis on some channels and one frequency band band with another dataset to check whether the code is running ok and these results make sense. At least then you could narrow it down to either the code or your data being the problem.

Thanks! I will try to find another dataset for check.

Thank you for your response to my question.

For this question, I guess you can check whether it is caused by edge effects. You may try zero-padding or changing the window function.

Thank you. I’ll try it.