This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from mne.io import read_raw_eeglab | |
import sklearn.datasets | |
import numpy as np | |
import mne | |
from pycrostates.cluster import ModKMeans | |
from pycrostates.datasets import lemon | |
raw_fname = lemon.load_data(subject_id='010017', condition='EC') | |
raw = read_raw_eeglab(raw_fname, preload=True) | |
raw.crop(0, 30) |