This notebook is used to set up important files for running the notebooks. It will create a "data" folder in the root of the repository, and download approximately 60MB of data.
In [1]:
import sys
sys.path.append('./src/')
import opencourse as oc
In [2]:
# Download all data
oc.download_all_files()
In [5]:
import mne # <-- Package for electrophysiology analysis
import pandas # <-- Package for representing data as a DataFrame
import bct # <-- Brain Connectivity Toolbox
In [ ]: