Is there a way to plot the significant mag & grad sensors in the same plot

  • MNE version: stable 1.0
  • operating system: e.g. linux

Hi! all,
I created masked channels that showed a significant effect after the spatio_temporal_cluster_1samp_test, but the significant mag & grad sensors seemed cannot be presented in the same figures. Here is the code snippet:

t_evoked.plot_topomap(times=0, ch_type='grad' ,vmin=np.min, vmax=np.max, cmap='RdBu_r', colorbar=False, scalings=1 ,show=False, 
                                      mask=mask, mask_params=dict(markersize=10), axes=ax_topo)

Is there a way to plot the significant mag & grad sensors in the same plot?

Hello, no, this is not supported, first because the sensors would be likely to overlap in the figure, and secondly because the measurement units and values are different, so there is no way to combine them.

Best wishes,
Richard

1 Like

Okay, I got it. Thanks :blush: :sparkling_heart: :sparkling_heart: