NoahMarkowitz

Results 26 comments of NoahMarkowitz

If it would help I can send a sample of tobii output with all its fields in Python. It would be a pickled dictionary of the gaze data

My thinking/plan for this is roughly: - Run a bunch of analyses/preprocessing steps you'd like visualized (like time-frequency or change of reference) - pass all those datastructures into a call...

It would be nice but also a problem is that there's essentially limitless types of preproc/analysis to view - FFT - ICA - rereferencing scheme (a big one in epilepsy...

Here's some code that could be useful. It works by interacting with the ChannelAxis (the y-axis listing channel names) and doing shift+left-click to toggle the channel being part of the...

@agramfort , this is what my scratch work done by working around the source code and not changing anything internally. First, call the browser, get the annotations dock and add...

That would be ideal. I just don't want to overwrite any existing events. One thought is to add a Shift+Left-Click event when selecting a channel name that is evaluated before...

Hi, I'm going to give this a try. Is there someone in the MNE dev team that could potentially give me pointers on how to best do this? I have...

@marsipu you're able to store a list of channels in annotations. Check [here](https://mne.tools/stable/generated/mne.Annotations.html). For example, you can create an `Annotations` object like this: ``` from mne import Annotations annot =...

@larsoner I saw that but I also see that there are many other properties in the `BrowserParams` object such as `new_annotation_labels` that I'm unsure if I need to worry about...

I'll start with some basic. While in annotation mode, shift+click a channel on the channel name or the channel trace will make that channel part of the annotation. I'll attend...