Hello everyone,
I’ve been determining the net Granger causality (GC) between two signals using the spectral_connectivity_epochs function, following a process similar to the one in this example. My GC results show a dominant frequency of 5.0 Hz, but this doesn’t align with the power spectral density (PSD) of the signals, where the dominant frequency is around 1.0 Hz. I’m wondering if the GC results can still be considered valid, and how to interpret this apparent discrepancy.
Here are some additional details:
- The two signals were normalized (mean = 0, std = 1) before GC calculation.
- Highpass filter of the raw data: 0.0 Hz
- Lowpass filter of the raw data: 58.0 Hz
- Sampling frequency: 116.0 Hz
- Parameters for GC calculation:
fmin=0.5fmax=20rank=(np.array([1]), np.array([1]))gc_n_lags=20
Any insights on whether the GC results are reliable, and how I should infer the relationship between the GC and PSD, would be greatly appreciated!
Thanks in advance for your help!