Richard Höchenberger
Richard Höchenberger
The "Zoom in / out" buttons are kind of arbitrarily labeled, considering that just left of them in the toolbar there are buttons for "zooming in and out" of time...
MWE: ```python # %% import mne sample_dir = mne.datasets.sample.data_path() sample_fname = sample_dir / 'MEG' / 'sample' / 'sample_audvis_raw.fif' raw = mne.io.read_raw_fif(sample_fname, preload=True) raw.pick_types(meg='mag', ecg=True) epochs = mne.preprocessing.create_ecg_epochs( raw=raw.filter(l_freq=0.1, h_freq=30) )...
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.crop(tmax=60) raw.pick_types(eeg=True, eog=True, stim=True) events...
Now I know that this package doesn't use Matplotlib, but based on years of "common user experience", what I'd expect is that after I've run the magic `%matplotlib inline`, the...
Hello, I finally found a bit of time to play with the `qt-browser` and I ran into a number of things that didn't work as expected, or were too hard...
- [x] Add measurement units to colorbars – #27 - [x] Fix signal magnitudes in colorbars – #36 - [x] Gracefully handle the case that dipole is placed outside of...
Currently, `plot_sensors_connectivity()` produces a 3D scene. It would be great to have a visualization in 2D space too. With the new machinery in MNE-Python that powers [`plot_ch_adjacency()`](https://mne.tools/dev/generated/mne.viz.plot_ch_adjacency.html), this should be...
Hello, while working on https://github.com/conda-forge/staged-recipes/pull/17982 it turned out that the exact dependency stack of `MNE-Connectivity` is ill-specified: we find (partially conflicting) information in `setup.py`, `requirements.txt`, and the installation instructions. It...
### PsychoPy Version v2024.1.4 ### What OS are your PsychoPy running on? macOS Silicon ### Bug Description Adding a loop with a conditions CSV file that has a space in...