Real World Data (fMRI)

This is a subsample of real fMRI data from the 1000 Connectome Project.


In [2]:
%%writefile Source/fMRI.py

import pandas as pd
df = pd.read_csv('Source/PC.csv')
df.drop('Unnamed: 0',1,inplace=True)
fMRI = df.as_matrix()


Writing Source/fMRI.py

In [ ]: