I am trying to plot topo map with mne library, but I don't know why the figure does not contain contour/outlier and nose and ears. Anyone can help me with this issue? My code is here:
import mne
fname = "oddball-epo.fif"
epochs = mne.read_epochs(fname,preload=True)
target = epochs["target"].average()
target
standard = epochs["standard"].average()
target.plot_joint()
times = [0, 0.1, 0.2, 0.3, 0.4, 0.5]
times1 = [-0.2,-0.1,0,0.1, 0.2, 0.3, 0.4, 0.5]
target.plot_joint(times)
target.plot_topomap(times1, ch_type='eeg')
target.plot_joint(times1)
It is the resulting image Resulting image & Expected result Expected result