Visit
http://datamatrix.cogsci.nl/index
for the latest documentation
DataMatrix
DataMatrix is an intuitive Python library for working with column-based and continuous data.
Features
- An intuitive syntax that makes your code easy to read.
- Requires only the Python standard libraries (but you can use
numpyto improve performance). - Great support for functional programming, including advanced memoization (caching).
- Mix two-dimensional (series) and one-dimensional data in a single data structure.
DataMatrixdoes what it does really well, but it cannot do everything that libraries such aspandascan. Therefore, you can convert to and frompandas.DataFrame.
Video 1. Using
datamatrix to play with movie data.
Video 2. Using
datamatrix to analyze eye-movement data.
Example
from datamatrix import DataMatrix
# Four philosophers with their names, fields, and genders
dm = DataMatrix(length=4)
dm.name = 'Ibn al-Haytam', 'Hypatia', 'Popper', 'de Beauvoir'
dm.field = 'Optics', 'Mathematics', 'Science', 'Existentialism'
dm.gender = 'M', 'F', 'M', 'F'
print('Philosophers:')
print(dm)
# Select only women existentialists
dm = (dm.gender == 'F') & (dm.field == 'Existentialism')
print('Women Existentialists:')
print(dm)
Output:
Philosophers:
+---+----------------+--------+---------------+
| # | field | gender | name |
+---+----------------+--------+---------------+
| 0 | Optics | M | Ibn al-Haytam |
| 1 | Mathematics | F | Hypatia |
| 2 | Science | M | Popper |
| 3 | Existentialism | F | de Beauvoir |
+---+----------------+--------+---------------+
Women Existentialists:
+---+----------------+--------+-------------+
| # | field | gender | name |
+---+----------------+--------+-------------+
| 3 | Existentialism | F | de Beauvoir |
+---+----------------+--------+-------------+



