Richard Höchenberger
Richard Höchenberger
I just wanted to use `Raw.add_channels()`, so I looked at the API docs and even though I'm a developer, it actually took me a couple of seconds to even understand...
### Proposed documentation enhancement Currently, the documentation contains several base classes which I believe never actually become relevant to users, however they show up in the searches e.g. when searching...
I'm not sure how much we'll actually benefit from this as most of our time-consuming code lives in NumPy and other highly-optimized libraries, but the upcoming performance improvements in CPython...
As per discussion on Discord w/ @agramfort, @larsoner, @britta-wstnr, @alexrockhill Also x-ref #4676 cc @SophieHerbst
It's important to label at least the extrema (anchors) of range sliders for a better UX It's not difficult to do: https://stackoverflow.com/questions/27661877/qt-slider-widget-with-tick-text-labels cc @GuillaumeFavelier Not urgent; in fact, I might...
MWE: ```python # %% 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.plot(butterfly=True, start=0, duration=1) ``` Take...
> Might be better / simpler just to make check_fname call _check_fname internally and return the str-ified absolute path, then our code ends up more DRY. It seems like every...
MWE: ```python from pathlib import Path import matplotlib import mne matplotlib.use('Qt5Agg') 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, preload=False) raw.plot_sensors('3d') ``` Clicking...
This was brought up by @Zhouyu0206 in https://mne.discourse.group/t/how-to-use-equalize-event-counts-combined-with-metadata-instead-of-event-ids/
### Problem description & MWE ```python import os import mne sample_data_folder = mne.datasets.sample.data_path() sample_data_raw_file = os.path.join(sample_data_folder, 'MEG', 'sample', 'sample_audvis_raw.fif') raw = mne.io.read_raw_fif(sample_data_raw_file, preload=True) # Replace all EOG data with 1's,...