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()


Saved to: /Users/choldgraf/Dropbox/github/publicRepos/neuro_datasci_open_course/data/matrices_connectivity.mat
Saved to: /Users/choldgraf/Dropbox/github/publicRepos/neuro_datasci_open_course/data/StevensonV2.mat
Saved to: /Users/choldgraf/Dropbox/github/publicRepos/neuro_datasci_open_course/data/StevensonV4.mat

Ensure that you have the right dependencies

All of the below packages should import:


In [5]:
import mne  # <-- Package for electrophysiology analysis
import pandas  # <-- Package for representing data as a DataFrame
import bct  # <-- Brain Connectivity Toolbox

In [ ]: