mnelab icon indicating copy to clipboard operation
mnelab copied to clipboard

MNELAB – a GUI for MNE

Results 45 mnelab issues
Sort by recently updated
recently updated
newest added

When i run mne lab code in my pc it throws this error File "H:\MNE LAB\mnelab-main\mnelab\mainwindow.py", line 32, in from .dialogs import * #noqa: F403 ImportError: attempted relative import with...

I think it would be nice to have an option to select the theme in the preferences dialog. It should include "light", "dark", and "auto". The caveat at the moment...

This PR shows a basic context menu when the user right-clicks on an element of the sidebar. It's another take on the suggestion described in https://github.com/cbrnr/mnelab/issues/305. Plus other useful actions...

I think it would be useful to add a new option to show channel stats as obtained with `raw.describe()` (which returns a Pandas dataframe), e.g.: ```ch name type unit min...

It would be useful if MNELAB showed event stats somewhere (i.e. how many events are present for each event type). The Events dialog would be a good option.

enhancement

I think it would be great if users could read custom montage files (in addition to the built-in ones). This could be integrated into the existing dialog.

enhancement

Currently, strings streams are only supported if they have a sampling frequency of zero (i.e. marker streams). However, regularly sampled streams (i.e. fs > 0) can also have a dtype...

enhancement

The batch rename channels dialog currently uses a dict mapping old names to new names. However, `mne.rename_channels` also supports a callable, which is exactly what the dialog uses. We should...

During development, it would be convenient if the history was checked for syntax errors. This can be implemented with the built-in function [`compile`](https://docs.python.org/3/library/functions.html#compile). Here's a basic example for this function:...

As noted [here](https://github.com/cbrnr/mnelab/pull/283#issuecomment-1037077574), switching units in "Edit Annotations" and "Edit Events" could be convenient.