Elyanah

Data Tools for Elixir

View the Project on GitHub allintheeyes/elyanah

Elyanah

Data Tools for Elixir

Goals

Eventually, the goal is to create a set of libraries that work nicely together to support using elixir for data analysis.

Documentation

http://allintheeyes.github.io/elyanah/apps/numeric/doc/api-reference.html

Current State

So far, we've got some infix operators for matrix/vector math, for example:

iex> use Elyanah.Numeric
nil
iex> [[1,2],[3,4],[5,6]] * [[1,2,3],[4,5,6]]
[[9, 12, 15], [19, 26, 33], [29, 40, 51]]

Next Steps

I'm going to work on developing something loosely equivalent to a pandas dataframe that can be used for machine learning.