Questions tagged [mne-python]

MNE-Python is an open-source Python package for exploring, visualizing, and analyzing human neurophysiological data such as MEG, EEG, sEEG, ECoG, and more. It includes modules for data input/output, preprocessing, visualization, source estimation, time-frequency analysis, connectivity analysis, machine learning, and statistics.

96 questions
0
votes
1 answer

Python MNE: how to compute continuous wavelets?

The Python MNE API says I should compute continuous wavelets by mne.time_frequency.cwt_morlet(X, sampling_frequency, frequencies_of_interest) However, when I make X equal to a raw .fif data file, it throws 287 # mode = "valid" 288 decim =…
Nico Autia
  • 129
  • 2
  • 14
-1
votes
2 answers

Using Mayavi mlab over VNC Throws OpenGL error

I'm having some difficulty using Mayavi mlab in python with PyCharm IDE from the MNE-Python environment. I access the Conda environment with Mayavi and VTK over a VNC session using a xvnc server from my local MacOS to a Linux cluster machine. The…
Alex He
  • 9
  • 3
-1
votes
1 answer

How to source localize resting state MEG data with no events and epochs using python-MNE

While performing source localization of MEG resting stage data it ask for epochs and events which I do not have in my data set as it is a resting state data. It is also preprocessed.
-1
votes
1 answer

How to convert .edf file into csv file in python?

I need a python program to convert edf file into csv file. I didn't find any helping material from internet. Actually due to some reasons it is compulsory to convert edf file into csv format. Thanks in advance.
-2
votes
1 answer

Why does my variable show up as NoneType in Variable Explorer shows up as matrix in command window

So I am working with a dataset that I need to get the sampling frequency in each column this is the function I am using def downsample_happysongs(): n = 8 # number of channels sample_freq = 128 # sample frequency used in dataset data1…
-2
votes
1 answer

How to export a rawEDF file to my computer

so basically I am manipulating edf files using mne and pyedflib libraries in python. As long as I am applying many changes on my edf_file, I need to export my edf file after each modification. I tried many commands with mne and pyedflib but none of…
1 2 3 4 5 6
7