This is a Jupyter notebook. You can add code cells to this notebook, and execute Python code that you write in these cells, by pressing the shift and enter keys on your keyboard.
For example:
In [1]:
a = 1
print(a)
To embed figures in the notebook, please use the following Jupyter command at the top of your notebook:
In [2]:
%matplotlib inline
To read data in from the AFQ-browser, you can use the Pandas library.
In [3]:
import pandas as pd
In [4]:
subjects = pd.read_csv('./data/subjects.csv')
In [5]:
subjects.head()
Out[5]:
In [6]:
nodes = pd.read_csv('./data/nodes.csv')
In [7]:
nodes.head()
Out[7]:
For an example analysis, see our example analysis notebook
In [ ]: