Hello all,
I want to compare two independent groups (Group X1 has N=12 participants and Group X2 has N=13 participants)
The data I want to compare is decoding accuracy over time. Therefore, for each group I have an array of N participants X Time-points.
shape(X1)
Out[258]: (12, 201)
shape(X2)
Out[259]: (13, 201)
I want to run a cluster permutation test to compare the independent groups, but I am unsure how to set-up the treshold and statsfun parameters for the ne.stats.permutation_cluster_test. At the moment, I have the following call:
X=[X1, X2]
F, clusters, cluster_pv, H0 = mne.stats.permutation_cluster_test(X,
threshold=None,
n_permutations=1024,
tail=0,
stat_fun=None,
adjacency=None,
n_jobs=1,
seed=None,
verbose=None)
My specific questions are:
- Does leaving the threshold = None selects a threshold for p<.05 for independent sample comparisons
- Does the stat_fun need to specify that the test independent samples?
Thanks!