<div dir="ltr">Dear Fieldtrip list,<div><br></div><div>I have planned to use the ft_freqstatistics function to find significant clusters of difference between two conditions (Cond_A vs Cond_B). I focus only on three electrodes, and only the time-frequency space matters to me. That is, I would like to see which time-frequency clusters differ between the two conditions.</div><div>When I look at the results, I do see significant time-frequency clusters, but I do not see any report about the P-values and T-values of the clusters. Is there any way to get the cluster P-value and cluster T-value?</div><div>This is the code that I am using:</div><div><br></div><div>cfg = [];<br>cfg.channel          = {'O1','O2',Oz'};<br>cfg.latency          = [0 1];<br>cfg.frequency        = [3 35];<br>cfg.avgoverfreq      ='no';<br>cfg.avgoverchan      ='yes';<br>cfg.parameter        = 'powspctrm';<br>cfg.method           = 'montecarlo';<br>cfg.statistic        = 'ft_statfun_depsamplesT';<br>cfg.alpha            = 0.05;<br>cfg.numrandomization = 10000;<br>subj = 20;<br>design = zeros(2,2*subj);<br>design(1,:) = [1:subj 1:subj];<br>design(2,:) = [ones(1,subj) ones(1,subj)*2];<br>cfg.design   = design;<br>cfg.uvar     = 1;<br>cfg.ivar     = 2;<br><br>[stat] = ft_freqstatistics(cfg,Cond_A,Cond_B);<br></div><div><br></div><div>Thanks a lot for your help and looking forward to receiving your suggestions.</div><div><br></div><div>Best, Hossein</div></div>