system
(system)
1
Hi all,
I seem to be stuck in an old version:
print(mne.__version__)
0.11.0
We have 14 installed and I know the location - how do I convince
python to import the correct version?
I'm also having trouble using ICA. I'm looking to remove an artifact
that isn't eog or ecg - is there a more generic version of
ica.find_bads?
ecg_inds, scores = ica.find_bads_ecg(ecg_epochs, method='ctps')
I also tried UnsupervisedSpatialFilter, but I don't have access to it, it
seems, with my currently active version of the mne module?
from mne.decoding import UnsupervisedSpatialFilter
system
(system)
2
Dear Megan,
remove all versions of mne-python on your system until
import mne
returns an ImportError.
Then just pip install it with:
pip install mne # for 0.14
or
pit install git+GitHub - mne-tools/mne-python: MNE: Magnetoencephalography (MEG) and Electroencephalography (EEG) in Python # for current
dev version
HTH
Alex
Hi all,
I seem to be stuck in an old version:
print(mne.__version__)
0.11.0
We have 14 installed and I know the location - how do I convince python
to import the correct version?
I'm also having trouble using ICA. I'm looking to remove an artifact
that isn't eog or ecg - is there a more generic version of ica.find_bads?
ecg_inds, scores = ica.find_bads_ecg(ecg_epochs, method='ctps')
I also tried UnsupervisedSpatialFilter, but I don't have access to it, it
seems, with my currently active version of the mne module?