Metadata-Version: 2.4
Name: rsatoolbox
Version: 0.3.2.dev3
Summary: Representational Similarity Analysis (RSA) in Python
Author: rsatoolbox authors
License-Expression: MIT
Project-URL: homepage, https://github.com/rsagroup/rsatoolbox
Project-URL: documentation, https://rsatoolbox.readthedocs.io/
Keywords: neuroscience
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Scientific/Engineering
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.21.2
Requires-Dist: scipy>=1.10.1
Requires-Dist: scikit-learn
Requires-Dist: scikit-image
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: h5py
Requires-Dist: tqdm
Requires-Dist: joblib
Requires-Dist: networkx>=3.0
Provides-Extra: imaging
Requires-Dist: mne~=1.5.1; extra == "imaging"
Requires-Dist: nibabel~=5.1.0; extra == "imaging"
Requires-Dist: neuroimagingtools~=1.1.4; extra == "imaging"
Dynamic: license-file

# Representational Similarity Analysis 3.0

[![Documentation Status](https://readthedocs.org/projects/rsatoolbox/badge/?version=latest)](https://rsatoolbox.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/rsatoolbox.svg)](https://badge.fury.io/py/rsatoolbox)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/rsatoolbox/badges/version.svg)](https://anaconda.org/conda-forge/rsatoolbox)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/626ca9ec9f75485a9f73783c02710b1f)](https://www.codacy.com/gh/rsagroup/rsatoolbox?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=rsagroup/rsatoolbox&amp;utm_campaign=Badge_Grade)
[![CodeFactor](https://www.codefactor.io/repository/github/rsagroup/rsatoolbox/badge)](https://www.codefactor.io/repository/github/rsagroup/rsatoolbox)


Conceived during the RSA retreat 2019 in Blue Mountains.

[Documentation](https://rsatoolbox.readthedocs.io/)


#### Getting Started

To install the latest stable version of rsatoolbox with pip:

```sh
pip install rsatoolbox
```

or with conda:

```sh
conda install -c conda-forge rsatoolbox
```


here is a simple code sample:

```python
import numpy, rsatoolbox
data = rsatoolbox.data.Dataset(numpy.random.rand(10, 5))
rdms = rsatoolbox.rdm.calc_rdm(data)
rsatoolbox.vis.show_rdm(rdms)
```
