Getting started¶
To install the latest release of rsatoolbox:
pip install rsatoolbox
To get the bleeding edge or “pre-release” version:
pip install --pre rsatoolbox
Or if you’re using a Conda environment:
conda install -c conda-forge rsatoolbox
To use rsatoolbox:
import numpy, rsatoolbox
data = rsatoolbox.data.Dataset(numpy.random.rand(10, 5))
rdms = rsatoolbox.rdm.calc_rdm(data)
rsatoolbox.vis.show_rdm(rdms)
Also make sure your setup meets the requirements to run the toolbox with the relevant toolboxes installed (see requirements.txt).
As in introduction, we recommend having a look at the Jupyter notebooks in demos
.