I’m trying to compute theta-gamma PAC using pactools.
I compute Comodulogram and use the method .fit().
However, since my data is already epoched and concatenated across participants, I do not use raw_to_mask() function as suggested by the example.
Instead, I filter my data in the frequencies I would like to compute my PAC on:
The results I’m getting look very reasonable (at least I see what I expect to be seeing), but I’m still doubting on whether I’m doing the right thing by passing the filtered data to .fit().
Starting from a different point of view, if you were to use method="hagihira" (bicoherence) the fit call would return an error saying that it requires the same signal. Passing in only a low_sig will still return a comodulogram along the frequencies specified by low_fq_range and high_fq_range, which is actually the case for any method as shown in this example.
From that I assume that certain methods (BICOHERENCE_PAC_METRICS) are designed to work only within the same epochs (low_sig) and others (most of them) either within or across multiple epochs (low_sig & high_sig corresponding to DRIVER & CARRIER signals respectively) and that, since the filtering is handled internally, there is really no need for you to apply it beforehand.
Alternatively, I would assume that if you apply some filtering as you do it should be fairly broadband, because else there would be nothing to be found with PAC there. So, as long as your gamma band is not very narrow, I guess it’s still ok.
I think it would be interesting to try both approaches and try to figure out potential differences. If you do, I would be very interested to see the similarities and differences.