• Stars
    star
    184
  • Rank 209,187 (Top 5 %)
  • Language
    Python
  • License
    MIT License
  • Created about 5 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Python library for Representational Similarity Analysis

Representational Similarity Analysis 3.0

Documentation Status PyPI version Codacy Badge CodeFactor codecov

Conceived during the RSA retreat 2019 in Blue Mountains.

Documentation

Getting Started

To install the latest stable version of rsatoolbox with pip:

pip install rsatoolbox

or with conda:

conda install -c conda-forge rsatoolbox

here is a simple code sample:

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