We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MWE:
# %% from pathlib import Path import mne sample_dir = Path(mne.datasets.sample.data_path()) sample_fname = sample_dir / 'MEG' / 'sample' / 'sample_audvis_raw.fif' raw = mne.io.read_raw_fif(sample_fname) raw.crop(tmax=60) raw.pick_types(eeg=True, eog=True, stim=True) events = mne.find_events(raw) epochs = mne.Epochs( raw=raw, events=events, ) epochs.plot()
Produces:
As you can see, I scrolled all the way to the bottom, but there are just no EOG or STIM channels listed there.
The butterfly plot looks like this:
Here, the EOG and STIM channels appear on the y axis tick labels, but there is just no data being shown.
But if I do
epochs.plot(picks='eog')
then it becomes clear that there is, in fact, data:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
MWE:
Produces:
As you can see, I scrolled all the way to the bottom, but there are just no EOG or STIM channels listed there.
The butterfly plot looks like this:
Here, the EOG and STIM channels appear on the y axis tick labels, but there is just no data being shown.
But if I do
then it becomes clear that there is, in fact, data:
The text was updated successfully, but these errors were encountered: